-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "React Boilerplate",
"main": "index.js",
"scripts": {
"bundle": "webpack",
"clean": "rimraf docs",
"copy": "cp app/index.html docs/index.html",
"start": "npm run clean && npm run bundle && npm run copy && node_modules/.bin/webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigjollygiant14/react-boilerplate.git"
},
"keywords": [
"React",
"Boilerplate",
"Redux"
],
"author": "bigjollygiant14",
"license": "MIT",
"bugs": {
"url": "https://github.com/bigjollygiant14/react-boilerplate/issues"
},
"homepage": "https://github.com/bigjollygiant14/react-boilerplate#readme",
"devDependencies": {
"babel-core": "6.25.0",
"babel-loader": "7.0.0",
"babel-preset-env": "1.5.2",
"babel-preset-react": "6.24.1",
"rimraf": "2.6.1",
"webpack": "2.6.1"
},
"dependencies": {
"prop-types": "15.5.10",
"react": "15.6.0",
"react-redux": "5.0.5",
"react-router": "4.1.1",
"react-router-dom": "4.1.1",
"react-router-redux": "4.0.8",
"redux": "3.6.0"
}
}