-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.02 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "spotify-library-tone",
"version": "0.0.1",
"description": "Analyze the tone of your Spotify library with IBM Watson",
"main": "index.js",
"scripts": {
"start": "better-npm-run start",
"build": "better-npm-run build",
"dev": "better-npm-run dev",
"lint": "eslint --ignore-path .gitignore ."
},
"betterScripts": {
"build": {
"command": "webpack --config webpack/prod.config.js --progress --colors",
"env": {
"NODE_ENV": "production"
}
},
"start": {
"command": "node server/app.js",
"env": {
"NODE_ENV": "production"
}
},
"dev": {
"command": "node server/app.js",
"env": {
"NODE_ENV": "development"
}
}
},
"dependencies": {
"better-npm-run": "0.0.6",
"bluebird": "^3.2.1",
"body-parser": "^1.14.2",
"clone": "^1.0.2",
"cookie-parser": "^1.4.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"express": "^4.13.4",
"history": "^1.17.0",
"morgan": "^1.6.1",
"object-assign": "^4.0.1",
"prop-types": "^15.6.0",
"querystring": "^0.2.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.2.1",
"react-router": "^2.0.0-rc5",
"react-router-redux": "^3.0.0",
"react-sound": "^0.8.0",
"react-transform-hmr": "^1.0.2",
"redbox-react": "^1.2.2",
"redux": "^3.2.1",
"redux-thunk": "^1.0.3",
"spotify-web-api-js": "^0.15.0",
"spotify-web-api-node": "^2.2.0",
"style-loader": "^0.13.0",
"webpack": "^2.7.0",
"webpack-dev-middleware": "^1.5.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.6.4"
},
"devDependencies": {
"ajv": "^5.3.0",
"autoprefixer": "^6.3.0",
"autoprefixer-loader": "^3.2.0",
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-core": "^6.4.5",
"babel-eslint": "^8.2.1",
"babel-loader": "^6.2.1",
"babel-plugin-react-transform": "^2.0.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.3.13",
"css-loader": "^0.23.1",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^1.1.5",
"image-webpack-loader": "^3.4.2",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"raw-loader": "^0.5.1",
"react-hot-loader": "^1.3.0",
"react-transform-catch-errors": "^1.0.1",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"redux-devtools": "^3.0.1",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.0.2",
"redux-logger": "^2.4.0",
"style-loader": "^0.13.0",
"webpack": "^2.7.0",
"webpack-dev-middleware": "^1.5.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.6.4"
},
"engines": {
"node": ">5.0.0"
}
}