-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "Scheduler-System-Demo",
"version": "1.0.0",
"description": "A scheduler system utilizing multiple JS technologies.",
"keywords": [],
"author": "",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start:migrate": "npx prisma migrate deploy && npm start",
"frontend-install": "cd src-frontend-react && npm i",
"build": "cd src-frontend-react && npm i && npm run build && cd .."
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.5.9",
"prisma": "^5.4.2",
"yup": "^1.3.2"
},
"dependencies": {
"@prisma/client": "^5.2.0",
"axios": "^1.5.1",
"bcrypt": "^5.1.1",
"console-stamp": "^3.1.2",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.3.1",
"elapsed-time-logger": "^1.1.7",
"express": "^4.18.2",
"google-auth-library": "^9.1.0",
"http": "^0.0.1-security",
"http-errors": "~1.6.3",
"jsonwebtoken": "^9.0.2",
"morgan": "~1.9.1",
"prisma-generator-fake-data": "^0.10.0",
"socket.io": "^4.7.2",
"uuid": "^9.0.1",
"web-vitals": "^2.1.4"
}
}