forked from qheartq616/QQMusicApi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.03 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
45
{
"name": "qq-music-api",
"version": "1.1.2",
"scripts": {
"start": "node ./bin/www",
"start:doc": "docsify serve docs",
"prepack": "node ./node/build.js",
"build:docker": "docker build -t qqmusic:1.0 .",
"rm:docker": "docker container rm qqmusic -f",
"start:docker": "docker build -t qqmusic:1.0 . && docker run --name qqmusic -p 8888:80 -d qqmusic:1.0",
"test": "jest"
},
"main": "./node/index.js",
"files": [
"util/",
"node/",
"routes/",
"docs/",
"README.md"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"axios": "^0.21.2",
"cheerio": "^1.0.0-rc.3",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"fs": "^0.0.1-security",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"js-base64": "^2.5.1",
"jsonfile": "^5.0.0",
"moment": "^2.24.0",
"morgan": "~1.9.1",
"useragent": "^2.3.0",
"xml2js": "^0.4.22"
},
"devDependencies": {
"docsify": "^4",
"jest": "^28.1.2",
"prettier": "^2.7.1"
}
}