-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/common-lib",
"packages/core",
"packages/studentprogram",
"packages/reports",
"packages/players",
"packages/student-app",
"packages/admin"
]
},
"scripts": {
"start": "lerna run --parallel start",
"build": "lerna run build",
"serve": "lerna run --parallel serve",
"clean": "lerna run --parallel clean",
"cls-dep": "npx rimraf ./**/node_modules",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"lerna": "4.0.0",
"prettier": "^2.6.0"
},
"dependencies": {
"@chakra-ui/react": "^2.8.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.1",
"@mui/material": "^5.14.7",
"ag-grid-community": "^30.1.0",
"antd": "^5.9.3",
"axios": "^1.5.0",
"framer-motion": "^10.16.2",
"papaparse": "^5.4.1",
"react-ga": "^3.3.1",
"react-hook-form": "^7.45.4",
"react-modal": "^3.16.1",
"yup": "^1.2.0"
}
}