-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 1.04 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
{
"name": "fastify-structured-app",
"version": "1.0.0",
"main": "app/main.ts",
"type": "commonjs",
"scripts": {
"start": "ts-node app/main.ts",
"dev": "npx nodemon --ext ts --exec ts-node app/main.ts",
"build": "tsc",
"test": "npx jest",
"main": "ts-node test.ts",
"kill": "sudo kill -9 $(sudo lsof -t -i:3000)"
},
"dependencies": {
"@fastify/cors": "^11.0.1",
"@fastify/swagger": "^9.4.2",
"@fastify/swagger-ui": "^5.2.2",
"@fastify/websocket": "^11.0.2",
"@prisma/client": "^6.4.1",
"@sinclair/typebox": "^0.34.30",
"dotenv": "^16.4.7",
"fastify": "^5.3.0",
"fastify-cookie": "^5.7.0",
"fastify-structured-app": "file:",
"prisma": "^6.4.1",
"systeminformation": "^5.27.1",
"ws": "^8.18.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@types/ws": "^8.18.1",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.2"
}
}