-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.44 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
48
49
50
51
52
{
"name": "pool-appointment-api",
"version": "1.0.0",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "node esbuild.config.js",
"dev": "tsx --watch src/index.ts",
"start": "node -r tsconfig-paths/register dist/index.js",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"prisma:studio": "prisma studio"
},
"dependencies": {
"@prisma/client": "^5.10.0",
"bcryptjs": "^3.0.2",
"compression": "^1.8.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"git-commit-msg-linter": "^5.0.8",
"helmet": "^8.1.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"pino": "^8.17.2",
"pino-http": "^10.4.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/compression": "^1.8.0",
"@types/cors": "^2.8.18",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.19",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@vitest/coverage-v8": "^3.1.4",
"esbuild": "^0.20.1",
"prisma": "^5.10.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vite": "^6.3.5",
"vitest": "^3.1.4"
}
}