-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "react-family",
"version": "1.0.0",
"description": "react demo",
"main": "src/ndex.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/webpack --config webpack.config.js",
"start": "./node_modules/.bin/webpack-dev-server --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/onlybenyang/react-demo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/onlybenyang/react-demo/issues"
},
"homepage": "https://github.com/onlybenyang/react-demo#readme",
"devDependencies": {
"webpack-cli": "^2.1.3"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-hot-loader": "^4.1.3",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"webpack": "^4.8.1",
"webpack-dev-server": "^3.1.4"
}
}