-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "douyu-node",
"version": "1.0.0",
"description": "Douyu Node.js",
"main": "build/index.js",
"scripts": {
"start": "tsc && node build/index.js",
"dev": "nodemon --watch 'src/**/*' -e ts,tsx --exec 'ts-node' ./src/index.ts",
"format": "prettier --config .prettierrc --write ./src/**/*.ts",
"test": "jest"
},
"repository": "https://github.com/Huangxuny1/douyu-node.git",
"author": "AthosZhou",
"license": "MIT",
"dependencies": {
"koa": "^2.12.1",
"koa-body": "^4.2.0",
"koa-router": "^9.0.1",
"log4js": "^6.3.0",
"md5": "^2.2.1",
"node-rdkafka": "^2.9.0",
"qrcode": "^1.4.4",
"set-cookie-parser": "^2.4.6",
"superagent": "^5.2.2",
"typescript": "^3.9.5",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/koa": "^2.11.3",
"@types/koa-router": "^7.4.1",
"@types/log4js": "^2.3.5",
"@types/md5": "^2.2.0",
"@types/node": "^14.0.13",
"@types/qrcode": "^1.3.4",
"@types/set-cookie-parser": "^0.0.6",
"@types/superagent": "^4.1.7",
"@types/ws": "^7.2.5",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0"
}
}