-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.54 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
{
"name": "BaseReactApp",
"version": "2.0.0",
"description": "Base code for react app",
"main": "index.js",
"scripts": {
"build": "webpack -p --config ./webpack-production.config.js",
"start": "webpack-dev-server"
},
"author": "Xourse",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babelify": "^7.3.0",
"chai": "^4.1.0",
"chai-immutable": "^1.6.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"enzyme": "^2.9.1",
"extract-text-webpack-plugin": "^3.0.0",
"istanbul": "^0.4.5",
"jsdom": "^11.1.0",
"mocha": "^3.5.0",
"path": "^0.12.7",
"react-addons-test-utils": "^15.6.0",
"react-hot-loader": "^1.3.1",
"sass-loader": "^6.0.6",
"sinon": "^2.4.1",
"style-loader": "^0.18.2",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"immutable": "^3.8.1",
"node-sass": "^4.5.3",
"react": "^15.6.1",
"react-datepicker": "^0.52.0",
"react-dom": "^15.6.1",
"react-immutable-proptypes": "^2.1.0",
"react-redux": "^5.0.5",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.7.2"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
]
}
}