-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
79 lines (79 loc) · 2.33 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
{
"name": "admin-panel",
"version": "0.1.0",
"private": true,
"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",
"format": "prettier --write .",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@module-federation/nextjs-mf": "^8.5.5",
"@module-federation/utilities": "3.0.11",
"@mui/icons-material": "^5.15.20",
"@mui/material": "^5.16.0",
"@project-sunbird/client-services": "^7.0.6",
"@project-sunbird/telemetry-sdk": "^1.3.0",
"@rjsf/core": "^5.19.3",
"@rjsf/mui": "^5.19.3",
"@rjsf/utils": "^5.19.3",
"@rjsf/validator-ajv8": "^5.19.3",
"@tanstack/react-query": "^5.51.23",
"axios": "^1.7.2",
"date-fns": "^3.6.0",
"dayjs": "^1.11.13",
"feather-icons-react": "^0.7.0",
"fingerprintjs2": "^2.1.4",
"i18next": "^23.11.5",
"jquery": "^3.7.1",
"ka-table": "^11.0.2",
"next": "14.2.4",
"next-i18next": "^15.3.0",
"papaparse": "^5.4.1",
"react": "^18",
"react-circular-progressbar": "^2.1.0",
"react-csv-reader": "^4.0.0",
"react-dom": "^18",
"react-ga4": "^2.1.0",
"react-i18next": "^14.1.2",
"react-toastify": "^10.0.5",
"sharp": "^0.33.4",
"zustand": "^4.5.4"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.51.23",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/fingerprintjs2": "^2.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/papaparse": "^5.3.14",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.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",
"postcss": "^8",
"prettier": "^3.3.2",
"stylelint": "^16.8.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^36.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.0",
"webpack": "^5.91.0"
}
}