-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
88 lines (88 loc) · 2.53 KB
/
package.json
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
81
82
83
84
85
86
87
88
{
"name": "pratham-scp",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=16.17.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --write .",
"lint:css": "stylelint '**/*.{css,scss}'",
"lint:css:fix": "stylelint '**/*.{css,scss}' --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"cypress:open": "cypress open"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.21",
"@mui/x-date-pickers": "^7.10.0",
"@project-sunbird/client-services": "^7.0.6",
"@project-sunbird/telemetry-sdk": "^1.3.0",
"@rjsf/core": "^5.18.5",
"@rjsf/mui": "^5.19.2",
"@rjsf/utils": "^5.18.5",
"@rjsf/validator-ajv8": "^5.18.5",
"@tanstack/react-query": "^5.45.1",
"axios": "^1.6.8",
"date-fns": "^3.6.0",
"dayjs": "^1.11.13",
"fingerprintjs2": "^2.1.4",
"i18next": "^23.11.4",
"i18next-resources-to-backend": "^1.2.1",
"jquery": "^3.7.1",
"jwt-decode": "^4.0.0",
"next": "^14.2.3",
"next-i18next": "^15.3.0",
"next-pwa": "^5.6.0",
"prettier": "^3.2.5",
"react": "^18",
"react-calendar": "^5.0.0",
"react-circular-progressbar": "^2.1.0",
"react-dom": "^18",
"react-ga4": "^2.1.0",
"react-i18next": "^14.1.2",
"react-joyride": "^2.8.2",
"react-select": "^5.8.0",
"react-toastify": "^10.0.5",
"recharts": "^2.12.7",
"sharp": "^0.33.3",
"stylis": "^4.3.4",
"stylis-plugin-rtl": "^2.1.1",
"swiper": "^11.1.10",
"zustand": "^4.5.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/fingerprintjs2": "^2.0.0",
"@types/jest": "^29.5.12",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^20",
"@types/react": "^18.3.3",
"@types/react-dom": "^18",
"@types/stylis": "^4.2.6",
"cypress": "^13.12.0",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-testing-library": "^6.2.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"stylelint": "^16.6.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^36.0.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}