-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.21 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-es6-webpack-boilerplate",
"version": "5.0.0",
"description": "Boilerplate for kick starting a React Project with ES6 (Babel) and Hot reloader using Webpack.",
"main": "index.js",
"scripts": {
"start": "node server.js",
"build": "cross-env BABEL_ENV=production ./node_modules/.bin/webpack --config webpack.config.production.js",
"lint": "eslint --cache --ignore-path .gitignore --format=node_modules/eslint-formatter-pretty . *.js",
"test": "npm run lint"
},
"engines": {
"npm": "5.8.0",
"node": "8.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/vasanthk/react-es6-webpack-boilerplate.git"
},
"keywords": [
"react",
"es6",
"babel",
"webpack"
],
"author": "Vasanth Krishnamoorthy (http://www.vasanthk.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vasanthk/react-es6-webpack-boilerplate/issues"
},
"homepage": "https://github.com/vasanthk/react-es6-webpack-boilerplate",
"dependencies": {
"@kenshooui/react-multi-select": "^1.0.51",
"babel-runtime": "^6.20.0",
"react": "^15.4.1",
"react-bootstrap": "^0.32.1",
"react-dom": "^15.4.1",
"react-hamburger-menu": "^1.1.0",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.2.2",
"react-spinners": "^0.3.2",
"redux-logger": "^3.0.6",
"webpack-cli": "^2.1.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^1.16.5",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"cross-env": "^3.1.3",
"css-loader": "^0.28.11",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-formatter-pretty": "^1.1.0",
"eslint-plugin-compat": "^0.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"react-redux": "^5.0.7",
"react-transform-hmr": "^1.0.4",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"style-loader": "^0.20.3"
}
}