-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 KB
/
package.json
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
46
47
48
{
"type": "module",
"name": "messaging",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"start": "npm run build:ts && fastify start -l info dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json",
"start:dev": "nodemon app.ts",
"start:prod": "node app.ts",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.8.3",
"@fastify/cors": "^8.5.0",
"@fastify/env": "^4.3.0",
"@fastify/jwt": "^8.0.1",
"@fastify/mongodb": "^8.0.0",
"@fastify/sensible": "^5.6.0",
"@fastify/websocket": "^10.0.1",
"@typegoose/typegoose": "^12.4.0",
"@types/uuid": "^9.0.8",
"dotenv": "^16.4.5",
"fastify": "^4.18.0",
"fastify-plugin": "^4.5.1",
"jose": "^5.4.0",
"kafkajs": "^2.2.4",
"mongoose": "^8.3.4",
"mongoose-autopopulate": "^1.1.0",
"socket.io": "^4.7.5",
"ts-node": "^10.9.2",
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@types/ws": "^8.5.10",
"nodemon": "^3.1.0",
"prettier": "3.3.1",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
}
}