-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "This boilerplate contains react, redux, react-router-v4 setup.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --open",
"build": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mountainfirefly/react-redux-router-boilerplate.git"
},
"keywords": [
"javascript",
"reactjs",
"redux",
"reduxjs",
"react-router",
"react-router-v4"
],
"author": "mountainfirefly <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mountainfirefly/react-redux-router-boilerplate/issues"
},
"homepage": "https://mountainfirefly.github.io/react-redux-router-boilerplate/",
"dependencies": {
"react": "16.5.2",
"react-dom": "16.5.2",
"react-redux": "5.0.7",
"react-router-dom": "4.3.1",
"redux": "4.0.0"
},
"devDependencies": {
"@babel/core": "7.1.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"babel-loader": "8.0.2",
"css-loader": "1.0.0",
"gh-pages": "2.0.0",
"html-webpack-plugin": "3.2.0",
"style-loader": "0.23.0",
"webpack": "4.19.1",
"webpack-cli": "3.1.1",
"webpack-dev-server": "3.1.8"
}
}