-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.01 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"author": {
"name": "Anthony Northrup",
"email": "anthonynorthrup314@gmail.com"
},
"bugs": {
"url": "https://github.com/anthonynorthrup314/spotify-playlist-updater/issues"
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"ejs": "^3.0.2",
"express": "^4.17.1",
"lowdb": "^1.0.0",
"query-string": "^6.11.1",
"uuid": "^7.0.3"
},
"description": "Update playlists with new music from the artist of the playlist",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/bootstrap": "^4.3.2",
"@types/cookie-parser": "^1.4.2",
"@types/ejs": "^3.0.1",
"@types/express": "^4.17.4",
"@types/fs-extra": "^8.1.0",
"@types/jquery": "^3.3.34",
"@types/lowdb": "^1.0.9",
"@types/node": "^13.9.8",
"@types/shelljs": "^0.8.7",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"fs-extra": "^9.0.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.3",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"homepage": "https://github.com/anthonynorthrup314/spotify-playlist-updater#readme",
"license": "ISC",
"main": "dist/server.js",
"name": "spotify-playlist-updater",
"repository": {
"type": "git",
"url": "git+https://github.com/anthonynorthrup314/spotify-playlist-updater.git"
},
"scripts": {
"build": "npm-run-all clean lint tsc copy:assets",
"clean": "rimraf dist/*",
"copy:assets": "npm-run-all copy:images copy:views",
"copy:images": "ts-node utils/copy-images.ts",
"copy:views": "ts-node utils/copy-views.ts",
"dev": "nodemon --watch src -e ejs,png,ts --exec npm run dev:start",
"dev:start": "npm-run-all build start",
"lint": "eslint . --ext .ts --fix",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc"
},
"version": "1.0.0"
}