-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 841 Bytes
/
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
{
"devDependencies": {
"@types/cron": "^2.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3"
},
"scripts": {
"postinstall": "npm run postinstall:backend && npm run postinstall:frontend",
"postinstall:backend": "cd backend && npm install",
"postinstall:frontend": "cd frontend && npm install",
"prepare": "husky install",
"test": "npm run test:backend",
"test:backend": "cd backend && npm test"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/material": "^5.12.1",
"@nestjs/common": "^9.4.0",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.4.0",
"@nestjs/schedule": "^3.0.1",
"node-cron": "^3.0.2",
"react": "^18.2.0",
"react-query": "^3.39.3",
"socket.io": "^4.7.1",
"typeorm": "^0.3.15"
}
}