-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.48 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.48 KB
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
{
"name": "react-starter-kit",
"version": "1.0.0",
"description": "A fast dev env which combines redux, react-router, build tools (webpack, gulp...) and backend node-express",
"main": "config.js",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"css-loader": "^0.28.0",
"eslint": "^3.14.1",
"eslint-plugin-react": "^6.9.0",
"html-webpack-harddisk-plugin": "^0.1.0",
"html-webpack-plugin": "^2.28.0",
"style-loader": "^0.16.1",
"webpack": "^3.8.1",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dev-server": "^2.9.3"
},
"dependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
},
"scripts": {
"start": "webpack-dev-server --config webpack.dev.config.js",
"lint": "eslint app",
"build": "webpack -p --config webpack.production.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ricky155030/react-starter-kit.git"
},
"author": "HungWei Kao <hungwei.kao@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ricky155030/react-starter-kit/issues"
},
"homepage": "https://github.com/ricky155030/react-starter-kit#readme"
}