forked from gigify-music/gigify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.37 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "gigify",
"version": "1.0.0",
"description": "Playlist generator",
"main": "server.js",
"scripts": {
"start": "nodemon ./server/server.js & webpack -w",
"build": "webpack src/index.jsx build/bundle.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gigify-music/gigify.git"
},
"author": "Jordan Estes, JP Marra, Scott Sanders, and Aamir Yousuf",
"license": "MIT",
"bugs": {
"url": "https://github.com/gigify-music/gigify/issues"
},
"homepage": "https://github.com/gigify-music/gigify#readme",
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-airbnb": "^2.2.3",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-1": "^6.22.0",
"css-loader": "^0.28.0",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.8.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"file-loader": "^0.11.1",
"morgan": "^1.8.1",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"redux-devtools": "^3.3.2",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"webpack": "^2.4.1"
},
"peerDependencies": {
"prop-types": "^15.5.8"
},
"dependencies": {
"axios": "^0.15.3",
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"express-session": "^1.15.2",
"jquery": "^3.2.1",
"knex": "^0.12.9",
"moment": "^2.18.1",
"node-schedule": "^1.2.1",
"particles.js": "^2.0.0",
"passport": "^0.3.2",
"passport-spotify": "^0.3.1",
"path": "^0.12.7",
"pg": "^6.1.5",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-loading": "0.0.9",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.1",
"react-slick": "^0.14.8",
"react-sticky": "^5.0.5",
"react-toggle-display": "^2.1.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"request": "^2.81.0",
"slick-carousel": "^1.6.0",
"spotify-web-api-js": "^0.21.2",
"spotify-web-api-node": "^2.3.6",
"sweet-scroll": "^2.2.0",
"twilio": "^2.11.1",
"url-loader": "^0.5.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}