-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1 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
{
"name": "zhang_yuan_bao",
"version": "0.0.1",
"main": "index.ts",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts --env-file=.env --env-file=.development.env ",
"build": "tsc -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --env-file=.env --env-file=.production.env ./.build/index.js"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@fastify/auth": "^5.0.2",
"@fastify/autoload": "^6.1.0",
"@fastify/bearer-auth": "^10.1.0",
"@fastify/cors": "^10.0.2",
"@fastify/env": "^5.0.2",
"@fastify/jwt": "^9.0.4",
"@fastify/multipart": "^9.0.3",
"drizzle-orm": "^0.39.3",
"fastify": "^5.2.1",
"fastify-plugin": "^5.0.1",
"pg": "^8.13.2"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.13.1",
"@types/pg": "^8.11.11",
"drizzle-kit": "^0.30.4",
"pino-pretty": "^13.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}