-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 842 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 842 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
{
"name": "api-nodejs",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node --env-file .env --watch --experimental-strip-types server.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/swagger": "^9.5.2",
"@fastify/swagger-ui": "^5.2.3",
"@scalar/fastify-api-reference": "^1.37.0",
"drizzle-orm": "^0.44.6",
"fastify": "^5.6.1",
"fastify-type-provider-zod": "^6.0.0",
"pg": "^8.16.3",
"pino-pretty": "^13.1.1",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/node": "^24.6.2",
"drizzle-kit": "^0.31.5",
"prettier": "3.6.2",
"typescript": "^5.9.3"
}
}