-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.2 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
46
47
48
49
50
51
52
{
"name": "chat-websocket",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@9.2.0",
"description": "Socket.IO chat app with RabbitMQ and Redis",
"author": "Alex Sun",
"license": "MIT",
"keywords": [
"socket.io",
"rabbitmq",
"redis",
"chat"
],
"main": "index.js",
"scripts": {
"dev": "tsx watch index.ts",
"build": "tsc --outDir dist",
"preview": "node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "simple-git-hooks",
"db": "prisma generate"
},
"dependencies": {
"@prisma/client": "^5.15.0",
"bcryptjs": "^2.4.3",
"bufferutil": "^4.0.8",
"dotenv": "^16.4.5",
"prisma": "^5.15.0",
"rabbitmq-client": "^4.6.0",
"redis": "^4.6.14",
"socket.io": "^4.7.5",
"utf-8-validate": "^5.0.10"
},
"devDependencies": {
"@antfu/eslint-config": "^2.20.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.14.2",
"eslint": "^8.57.0",
"lint-staged": "^15.2.5",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.11.2",
"typescript": "^5.4.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm lint:fix"
}
}