forked from vasanthk/react-es6-webpack-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.8 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"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_modules/webpack-dev-server/bin/webpack-dev-server.js --progress --colors --hot --error-details",
"build": "NODE_ENV=production ./node_modules/.bin/webpack -p --progress --config webpack.config.production.js",
"lint": "eslint --cache --ignore-path .gitignore --format=node_modules/eslint-formatter-pretty . *.js",
"test": "mocha -w test/helpers/browser.js test/*.spec.js"
},
"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": {
"babel-runtime": "^6.20.0",
"node-sass": "^4.5.3",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"sw-precache-webpack-dev-plugin": "^0.2.0"
},
"devDependencies": {
"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",
"browser-sync": "^2.18.12",
"browser-sync-webpack-plugin": "^1.1.4",
"chai": "^3.5.0",
"chai-enzyme": "^0.7.1",
"cheerio": "^0.22.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.1.3",
"css-loader": "^0.28.2",
"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",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.11.1",
"http-server": "^0.10.0",
"jsdom": "^11.0.0",
"json-loader": "^0.5.4",
"jsx-loader": "^0.13.2",
"mocha": "^3.4.2",
"node-sass": "^4.5.3",
"onsenui": "^2.3.1",
"prop-types": "^15.5.10",
"react-addons-test-utils": "^15.5.1",
"react-hot-loader": "^1.3.1",
"react-onsenui": "^1.3.2",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-transform-hmr": "^1.0.4",
"redux": "^3.6.0",
"sass-loader": "^4.1.1",
"style-loader": "^0.18.0",
"sw-precache-webpack-plugin": "^0.9.2",
"swig": "^1.4.2",
"webpack": "^1.15.0",
"webpack-dev-server": "^1.16.2"
}
}