-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
30 lines (30 loc) · 896 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
{
"name": "huangdarren1106.github.io",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "npm run generate-top-artists && npm run move-top-artists && npm run generate-top-songs && npm run move-top-songs",
"generate-top-artists": "node top-artists.js",
"move-top-artists": "mv output/top-spotify-artists.html docs/top-spotify-artists.html",
"generate-top-songs": "node top-songs.js",
"move-top-songs": "mv output/spotify-top-songs-right-now.html docs/spotify-top-songs-right-now.html",
"serve": "serve docs",
"start": "node server.js",
"dev": "nodemon server.js"
},
"dependencies": {
"axios": "^1.7.2",
"chokidar": "^3.5.3",
"express": "^4.18.2",
"nunjucks": "^3.2.3"
},
"author": "",
"license": "ISC",
"devDependencies": {
"nodemon": "^3.1.5"
}
}