-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "fastify-structured-app",
"version": "1.0.0",
"main": "app/main.ts",
"type": "commonjs",
"scripts": {
"test": "ts-node test.ts",
"start": "ts-node app/main.ts",
"dev": "nodemon --watch 'app/**/*.ts' --exec ts-node app/main.ts",
"build": "tsc",
"kill": "sudo kill -9 $(sudo lsof -t -i:3000)"
},
"dependencies": {
"@fastify/cors": "^11.0.0",
"@fastify/swagger": "^9.4.2",
"@fastify/swagger-ui": "^5.2.2",
"@prisma/client": "^6.5.0",
"@prisma/extension-accelerate": "^1.2.2",
"@sinclair/typebox": "^0.34.30",
"@types/bcrypt": "^5.0.2",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.7",
"fastify": "^5.2.1",
"jsonwebtoken": "^9.0.2",
"nodemon": "^3.1.9",
"prisma": "^6.4.1",
"redis": "^4.7.0",
"systeminformation": "^5.25.11"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.13.9",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}