-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 907 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 907 Bytes
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
{
"name": "react-bootcamp2",
"version": "0.0.1",
"private": true,
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.0",
"babel-preset-react": "^6.24.1",
"jest": "^20.0.3",
"react-scripts": "^0.9.5"
},
"dependencies": {
"lodash": "^4.17.4",
"material-ui": "^0.17.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.4",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.8",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test-scripts": "react-scripts test --env=jsdom",
"test": "jest",
"test:watch": "npm test -- --watch",
"eject": "react-scripts eject"
}
}