-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "react-redux-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for React with Redux",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.dev.js",
"build-prod": "webpack --config webpack.prod.js",
"watch": "webpack --watch",
"lint": "eslint src",
"test": "jest"
},
"repository": "https://github.com/larsdouweschuitema/react-redux-boilerplate.git",
"author": "Lars Douwe Schuitema <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-polyfill": "6.26.0",
"react": "16.3.2",
"react-dom": "16.3.2",
"react-redux": "5.0.7",
"redux": "4.0.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "7.1.4",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"copy-webpack-plugin": "4.5.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3",
"uglifyjs-webpack-plugin": "1.2.5",
"webpack": "4.7.0",
"webpack-cli": "2.1.2",
"webpack-dev-server": "3.1.4",
"webpack-merge": "4.1.2"
}
}