-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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": "play",
"version": "1.0.0",
"description": "使用原生js实现的音乐播放器 ## API接口 我使用的是酷狗的jsonp接口,经过我测试发现这三个接口可以用,我就用来写了这个播放器, > #### 获取搜索关键字:https://searchtip.kugou.com/getSearchTip",
"main": "app.js",
"scripts": {
"serve": "nodemon --watch routes --watch app.js",
"build": "gulp",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"request": "^2.88.2"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.20.2",
"del": "6.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0",
"gulp-cssmin": "^0.2.0",
"gulp-htmlmin": "^5.0.1",
"gulp-imagemin": "^7.0.0",
"gulp-lzmajs": "^1.2.1",
"gulp-minify-css": "^1.2.4",
"gulp-order": "^1.2.0",
"gulp-rev": "9.0",
"gulp-rev-collector": "^1.3.3",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"gulp-watch": "^5.0.1",
"nodemon": "^2.0.21",
"pump": "^3.0.0"
}
}