-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 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
38
39
40
41
42
43
44
45
{
"version": "0.24-alpha.1",
"scripts": {
"start": "node build/source/index.js",
"dev": "nodemon source/index.ts",
"build": "tsc -p tsconfig.json",
"prisma::migrate": "prisma migrate dev --name init",
"prisma::generate": "prisma generate",
"prisma::pull": "prisma db pull"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^9.0.1",
"@fastify/session": "^11.1.0",
"@prisma/client": "^6.6.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.5.0",
"envalid": "^8.0.0",
"fastify": "^5.3.1",
"ioredis": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"pino": "^9.6.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@fastify/oauth2": "^8.1.2",
"@jest/globals": "^29.7.0",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.14.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"pino-pretty": "^13.0.0",
"prisma": "^6.6.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
}
}