-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 859 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 859 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
31
32
33
34
{
"name": "node_service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development ts-node main.ts",
"start:prod": "cross-env NODE_ENV=production ts-node main.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.22.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"express": "^4.21.1",
"inversify": "^6.1.4",
"inversify-express-utils": "^6.4.7",
"jsonwebtoken": "^9.0.2",
"log4js": "^6.9.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"prisma": "^6.0.0",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}