-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 934 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
30
31
32
33
34
35
36
37
38
{
"dependencies": {
"@prisma/client": "^5.2.0",
"@types/jest": "^29.5.4",
"@types/supertest": "^2.0.12",
"bcrypt": "^5.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jest": "^29.6.4",
"jsonwebtoken": "^9.0.1",
"lodash.merge": "^4.6.2",
"morgan": "^1.10.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1"
},
"name": "express",
"version": "1.0.0",
"main": "src/index.ts",
"devDependencies": {
"@types/node": "^20.5.6",
"prisma": "^5.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"scripts": {
"prod": "cross-env STAGE=production ts-node src/index.ts",
"dev": "ts-node src/index.ts",
"test": "cross-env STAGE=testing jest",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}