-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.06 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
{
"name": "prescriptions-api",
"version": "1.0.0",
"description": "",
"main": "src/http/server.ts",
"scripts": {
"dev": "tsx watch src/http/server.ts",
"start": "node dist/http/server.js",
"migrate": "pnpm prisma migrate dev",
"generate": "pnpm prisma generate",
"studio": "pnpm prisma studio -b chrome -p 5174",
"build": "tsc"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^22.7.0",
"happy-dom": "^16.8.1",
"prisma": "^6.4.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/jwt": "^9.0.1",
"@fastify/swagger": "^9.0.0",
"@fastify/swagger-ui": "^5.0.1",
"@prisma/client": "6.4.1",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"fastify": "^5.0.0",
"fastify-plugin": "^5.0.1",
"fastify-type-provider-zod": "^4.0.2",
"zod": "^3.24.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"bcrypt",
"esbuild",
"prisma"
]
}
}