-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1005 Bytes
/
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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"jsdom": "^11.0.0",
"mocha": "^2.5.3",
"react": "^15.6.1",
"react-redux": "^5.0.5",
"react-scripts": "1.0.7",
"redux": "^3.7.0",
"redux-devtools": "^3.4.0",
"redux-logger": "^3.0.6",
"sinon": "^2.3.4"
},
"devDependencies": {
"babel-core": "^6.25.0",
"enzyme": "^2.8.2",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "mocha ./src/app/component/test/*.js --require ./src/app/component/test/testHelper.js",
"eject": "react-scripts eject"
}
}