-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "hbk-stream-server",
"version": "2.10.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"challonge": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"googleapis": "^118.0.0",
"jose": "^4.14.4",
"lodash": "^4.17.21",
"redis": "^4.6.7",
"socket.io": "^4.6.2",
"typescript": "^5.1.3"
},
"scripts": {
"dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"tsc": "tsc"
},
"devDependencies": {
"@types/lodash": "^4.14.195",
"@types/node": "^20.3.1",
"@types/socket.io": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1"
}
}