-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 813 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 813 Bytes
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
{
"name": "fastify-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch --clear-screen=false --watch=src src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/jwt": "^10.0.0",
"@fastify/redis": "^7.1.0",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"bcryptjs": "^3.0.3",
"dotenv": "^17.2.3",
"fastify": "^5.6.2",
"pg": "^8.16.3",
"zod": "^4.2.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^25.0.3",
"@types/pg": "^8.16.0",
"pino-pretty": "^13.1.3",
"prisma": "^7.2.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}