-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.35 KB
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
{
"name": "express-inversify-prisma-starter",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node dist/server.js",
"start:prod": "npm run build && npm run start",
"dev": "ts-node-dev --respawn --transpile-only -r tsconfig-paths/register src/server.ts",
"build": "tsc && tsc-alias",
"test": "jest",
"docker:build": "docker build -t express-inversify-prisma-starter ."
},
"dependencies": {
"@prisma/client": "^6.19.0",
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"inversify": "^6.2.2",
"inversify-express-utils": "^6.5.0",
"jsonwebtoken": "^9.0.2",
"pino": "^8.21.0",
"reflect-metadata": "^0.2.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tsc-alias": "^1.8.16",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.12.12",
"@types/pino": "^7.0.4",
"@types/swagger-ui-express": "^4.1.8",
"inversify-express-utils": "^6.5.0",
"jest": "^29.7.0",
"prisma": "^6.19.0",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
}
}