-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1007 Bytes
/
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
{
"name": "react-redux-starter",
"version": "1.0.0",
"description": "React, webpack, redux basic setup",
"main": "index.js",
"repository": "git@github.com:pokorson/react-redux-starter.git",
"author": "Mateusz Pokora <vrael560@gmail.com>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --hot --inline",
"build": "yarn run clean && webpack --env=dist",
"clean": "rimraf dist/*"
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"redux": "^3.6.0"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"flow-bin": "^0.42.0",
"flow-typed": "^2.1.2",
"html-webpack-plugin": "^2.28.0",
"rimraf": "^2.6.1",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
}
}