-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.79 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
{
"name": "igym",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm test && webpack --config config/webpack.build.config.js --display-error-details",
"start": "node server.js",
"test": "mocha-webpack --webpack-config config/webpack.tests.config.js \"test/**/index.tsx\"",
"test:w": "mocha-webpack --watch --webpack-config config/webpack.tests.config.js \"test/**/index.tsx\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-native-modules": "^6.9.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"css-loader": "^0.23.1",
"expect": "^1.20.2",
"mocha": "^2.5.3",
"mocha-webpack": "^0.5.0",
"nock": "^8.0.0",
"node-sass": "^3.8.0",
"react-hot-loader": "^3.0.0-beta.2",
"redux-mock-store": "^1.1.2",
"sass-loader": "^4.0.0",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"ts-loader": "^0.8.2",
"typescript": "^2.1.0-dev.20160725",
"webpack": "^2.1.0-beta.20",
"webpack-dev-server": "^2.1.0-beta.0",
"webpack-notifier": "^1.3.0"
},
"dependencies": {
"axios": "^0.13.1",
"history": "^3.0.0",
"immutable": "^3.8.1",
"json-loader": "^0.5.4",
"lodash": "^4.14.1",
"material-ui": "^0.15.2",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-redux": "^4.4.5",
"react-router": "^2.6.0",
"react-router-redux": "^4.0.5",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-promise-middleware": "^3.3.2",
"redux-thunk": "^2.1.0"
}
}