forked from everyone-falls-asleep/socketing-socket-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 996 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 996 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
38
{
"name": "socketing-socket-server",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "index.js",
"scripts": {
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"prepare": "husky",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"type": "module",
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/env": "^5.0.1",
"@fastify/postgres": "^6.0.1",
"@fastify/redis": "^7.0.1",
"@fastify/static": "^8.0.2",
"@socket.io/admin-ui": "^0.5.1",
"@socket.io/redis-adapter": "^8.3.0",
"fastify": "^5.1.0",
"fastify-rabbitmq": "^3.1.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.1",
"socket.io": "^4.8.1"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1"
}
}