-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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": "spotify-copy-playlist",
"version": "1.0.0",
"description": "Copy playlist info (title, artist) from Spotify",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --progress --mode=\"production\"",
"watch:webpack": "webpack --progress --watch --mode=\"development\"",
"watch:server": "nodemon server.js",
"watch": "npm run watch:webpack & npm run watch:server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cazyw/spotify-copy-playlist.git"
},
"author": "Carol W (cazyw)",
"license": "ISC",
"bugs": {
"url": "https://github.com/cazyw/spotify-copy-playlist/issues"
},
"homepage": "https://github.com/cazyw/spotify-copy-playlist#readme",
"dependencies": {
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.1",
"express": "^4.17.1",
"node-fetch": "^2.6.7",
"spotify-web-api-js": "^1.5.2"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"babel-loader": "^8.2.5",
"nodemon": "^2.0.16",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"engines": {
"node": "16.14.2"
}
}