-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.76 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.76 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "nodeserver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.ts",
"fix": "eslint src/**/*.ts --fix",
"prebuild": "npm run fix",
"build": "npx tsc",
"prestart": "npm run fix",
"start": "ts-node --files src/index.ts ",
"dev": "nodemon --files src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@socket.io/redis-adapter": "^8.1.0",
"bcrypt": "^5.1.0",
"callsite": "^1.0.0",
"chalk": "^5.2.0",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-format": "^4.0.14",
"debug": "^4.3.4",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"jsonwebtoken": "^9.0.0",
"kafkajs": "^2.2.4",
"loglevel": "^1.8.1",
"loglevel-plugin-prefix": "^0.8.4",
"moment": "^2.29.4",
"redis": "^4.6.5",
"redis-om": "^0.4.0-beta.3",
"socket.io": "^4.6.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/callsite": "^1.0.31",
"@types/cookie-parser": "^1.4.3",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.5",
"@types/socket.io": "^3.0.2",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-plugin-unused-imports": "^2.0.0",
"nodemon": "^2.0.21",
"typescript": "^4.9.5"
},
"nodemonConfig": {
"restartable": "r",
"events": {
"start": "clear && npm run lint"
},
"watch": [
"src"
]
}
}