-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "spotify-ppm",
"version": "1.0.0",
"description": "Allows users to generate new playlists out of seeds including tracks, artists, and genres.",
"engines": {
"node": "12.x",
"npm": "6.9.0"
},
"main": "./server/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/server.js",
"build": "cd client/ && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ibhuiyan17/spotify-ppm.git"
},
"keywords": [
"spotify",
"playlist",
"node",
"react",
"express",
"material-ui",
"heroku"
],
"author": "Ibtida Bhuiyan",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ibhuiyan17/spotify-ppm/issues"
},
"homepage": "https://github.com/ibhuiyan17/spotify-ppm#readme",
"dependencies": {
"axios": "^0.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.4",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"lodash.pick": "^4.4.0",
"nodemon": "^1.19.1",
"querystring": "~0.2.0",
"request": "~2.83.0",
"simple-statistics": "^7.0.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3"
}
}