-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.14 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
{
"scripts": {
"build": "tsc && npx prisma generate",
"start:app": "node build/App.js",
"db:models:generate": "npx prisma generate",
"db:migration:create": "npx prisma migrate dev --create-only",
"db:migration:migrate": "npx prisma migrate deploy",
"test": "npm run build && NODE_ENV=test find . -name \"*.test.js\" | xargs -n 1 node"
},
"dependencies": {
"@prisma/client": "^5.20.0",
"@types/axios": "^0.9.36",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.7.4",
"@types/uuid": "^10.0.0",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-fileupload": "^1.5.1",
"express-validator": "^7.2.0",
"inversify": "^6.0.2",
"inversify-express-utils": "^6.4.6",
"jsonwebtoken": "^9.0.2",
"prisma": "^5.20.0",
"reflect-metadata": "^0.2.2",
"typescript": "^5.6.2",
"uuid": "^10.0.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@faker-js/faker": "^9.0.3"
}
}