-
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) · 1003 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1003 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
35
36
37
{
"scripts": {
"dev": "tsup --watch",
"build": "tsup --env.NODE_ENV production",
"start": "NODE_ENV=production node dist/main.js",
"prettier": "prettier --write .",
"prisma": "prisma",
"generate-session-key": "@fastify/secure-session > secret-key"
},
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/error": "^3.4.1",
"@fastify/session": "^10.7.0",
"@prisma/client": "5.11.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"fastify": "^4.26.2",
"fastify-plugin": "^4.5.1",
"fastify-type-provider-zod": "^1.1.9",
"http-status": "^1.7.4",
"lodash": "^4.17.21",
"pino-pretty": "^10.3.1",
"prisma": "^5.11.0",
"reflect-metadata": "^0.2.1",
"tsyringe": "^4.8.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@swc/core": "^1.4.8",
"@types/bcrypt": "^5.0.2",
"@types/lodash": "^4.17.0",
"@types/node": "^20.11.28",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
}
}