forked from vasanthk/react-es6-webpack-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.47 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
{
"name": "react-es6-webpack-boilerplate",
"version": "4.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": "./node_modules/.bin/cross-env BABEL_ENV=production ./node_modules/.bin/webpack --config webpack.config.production.js",
"lint": "./node_modules/.bin/eslint ."
},
"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": {
"react": "^0.14.5",
"react-dom": "^0.14.5",
"babel-runtime": "^6.3.19"
},
"devDependencies": {
"babel-core": "^6.3.21",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"cross-env": "^3.1.1",
"eslint": "^0.21.2",
"eslint-plugin-react": "^2.3.0",
"react-transform-hmr": "^1.0.1",
"webpack": "^1.8.4",
"webpack-dev-server": "^1.8.0"
}
}