-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.04 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
{
"name": "soundcloud-dj",
"version": "1.0.0",
"description": "Music player client using soundcloud api",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --progress --colors --hot --config ./webpack.dev.config.js",
"prod": "node server.js",
"postinstall": "webpack --config ./webpack.prod.config.js -p",
"test": "mocha --compilers js:babel-core/register --require ./test/setup.js 'src/**/*spec.js'",
"test:watch": "npm run test -- --watch"
},
"engines": {
"node": "6.11.2",
"npm": "3.10.10"
},
"keywords": [],
"author": "",
"license": "ISC",
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
]
},
"devDependencies": {
"chai": "^3.5.0",
"enzyme": "^2.8.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^1.3.1",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"bluebird": "3.5.0",
"chalk": "2.1.0",
"css-loader": "0.28.7",
"exports-loader": "^0.6.4",
"express": "4.15.4",
"imports-loader": "^0.7.1",
"material-ui": "^0.17.4",
"moment": "^2.18.1",
"node-sass": "4.5.3",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-marquee": "^0.1.1",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"react-tap-event-plugin": "^2.0.1",
"react-tooltip": "3.3.0",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.2.0",
"sass-loader": "6.0.6",
"scroll-into-view": "1.9.0",
"style-loader": "0.18.2",
"webpack": "^2.3.2",
"whatwg-fetch": "^2.0.3"
}
}