-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
45 lines (45 loc) · 1.17 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": "migu-music-api",
"version": "1.0.1",
"files": [
"dist/",
"data/",
"test.js"
],
"main": "./dist/index.js",
"scripts": {
"start": "npm run build && node bin/www",
"build": "rm -rf ./dist && tsc && tsc-alias && node build.js && cp -r -f ./views ./dist/views && cp -r -f ./public ./dist/public",
"test": "node test.js",
"start:docs": "docsify serve docs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"axios": "^0.21.4",
"cheerio": "^1.0.0-rc.3",
"cookie-parser": "~1.4.4",
"crypto-js": "^3.1.9-1",
"dayjs": "^1.10.7",
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"jsonfile": "^5.0.0",
"morgan": "~1.9.1",
"node-jsencrypt": "^1.0.0",
"xml2js": "^0.4.22"
},
"devDependencies": {
"@types/cheerio": "^0.22.30",
"@types/cookie-parser": "^1.4.2",
"@types/crypto-js": "^4.0.2",
"@types/express": "^4.17.2",
"@types/http-errors": "^1.8.1",
"@types/jsonfile": "^6.0.1",
"@types/morgan": "^1.9.3",
"@types/xml2js": "^0.4.9",
"docsify": "^4.12.1",
"tsc-alias": "^1.3.9",
"typescript": "^4.2.4"
}
}