forked from eduardconstantin/azure-cloud-exams
-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.28 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "Practice Tests Exams Platform",
"version": "2.0.0",
"private": true,
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watchAll",
"prepare": "husky install",
"e2e": "npx playwright test",
"e2e:ui": "npx playwright test --ui",
"e2e:headed": "npx playwright test --headed",
"stripe:listen": "stripe listen --forward-to localhost:3000/api/stripe/webhook"
},
"dependencies": {
"@apollo/client": "^4.1.2",
"@apollo/server": "^5.3.0",
"@as-integrations/next": "^4.1.0",
"@azure/cosmos": "^4.9.0",
"@next/third-parties": "^16.1.6",
"@stripe/stripe-js": "^8.6.4",
"@theme-toggles/react": "^4.1.0",
"@types/node": "^25.0.10",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"appwrite": "^21.5.0",
"class-validator": "^0.14.3",
"class-variance-authority": "^0.7.1",
"dotenv": "^17.2.3",
"dotenv-flow": "^4.1.0",
"eslint": "9.39.2",
"eslint-config-next": "^16.1.6",
"formik": "^2.4.9",
"graphql": "^16.12.0",
"next": "^16.1.6",
"next-pwa": "^5.6.0",
"node-appwrite": "^21.1.0",
"particles.js": "^2.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-github-btn": "^1.4.0",
"react-hook-form": "^7.71.1",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"reflect-metadata": "^0.2.2",
"remark-gfm": "^4.0.1",
"rxjs": "^7.8.1",
"stripe": "^20.2.0",
"vanilla-cookieconsent": "^3.1.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.28.5",
"@playwright/test": "^1.58.0",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.23",
"encoding": "^0.1.13",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.18",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}