-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.37 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "express-typescript-clear-architecture",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"build": "rm built/**/*; npm run tsc",
"dev": "nodemon --exec ts-node src/index.ts",
"start": "node built/index.js",
"test": "jest",
"test:watch": "jest --watch",
"seed": "ts-node prisma/seed.ts",
"migrate": "prisma migrate dev",
"reset:db": "prisma migrate reset --force"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.16.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-promise-router": "^4.1.1",
"express-winston": "^4.2.0",
"helmet": "^7.1.0",
"inversify": "^6.0.2",
"jest-mock-extended": "^3.0.7",
"pg": "^8.12.0",
"reflect-metadata": "^0.2.2",
"ts-case-convert": "^2.0.7",
"ts-node-dev": "^2.0.0",
"winston": "^3.13.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@types/pg": "^8.11.6",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"prisma": "^5.16.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=18"
}
}