-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 719 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 719 Bytes
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
{
"name": "node-server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "prisma generate",
"dev": "ts-node-dev --exit-child src/server.ts",
"start": "tsc & node dist/server.js"
},
"dependencies": {
"@prisma/client": "3.2.1",
"axios": "^0.23.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"socket.io": "^4.3.0",
"prisma": "3.2.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/socket.io": "^3.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
}
}