-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 874 Bytes
/
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
{
"name": "bandcamp-downloader",
"version": "1.0.0",
"description": "Download full albums with ID3 tags",
"main": "server/server.js",
"scripts": {
"dev": "nodemon -w server -w package.json server/server.js",
"build": "next build",
"start": "node server/server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"antd": "^3.23.2",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"cors-anywhere": "^0.4.1",
"express": "^4.17.1",
"file-saver": "^2.0.2",
"global": "^4.4.0",
"jszip": "^3.2.2",
"next": "^9.0.5",
"next-routes": "^1.4.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"request": "^2.88.0"
},
"devDependencies": {
"nodemon": "^1.19.2"
},
"engines": {
"node": "12.x",
"npm": "6.10.x"
}
}