-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 KB
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
{
"name": "react-babel-webpack-boilerplate",
"version": "1.2.4",
"description": "",
"main": "app/main.jsx",
"scripts": {
"lint": "eslint 'app/**/*.@(js|jsx)'",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack-dev-server --progress --content-base app",
"deploy": "NODE_ENV=production webpack -p --config webpack.production.config.js",
"deploy-windows": "SET NODE_ENV=production & webpack -p --config webpack.production.config.js",
"validate": "npm ls"
},
"dependencies": {
"babel-runtime": "6.x",
"bootstrap": "^3.3.7",
"react": "15.x",
"react-dom": "15.x"
},
"devDependencies": {
"babel-core": "6.9.1",
"babel-eslint": "6.x",
"babel-loader": "6.x",
"babel-plugin-transform-runtime": "6.x",
"babel-preset-es2015": "6.x",
"babel-preset-react": "6.x",
"babel-preset-stage-0": "6.x",
"copy-webpack-plugin": "latest",
"css-loader": "0.24.0",
"file-loader": "^0.8.5",
"html-webpack-plugin": "2.22.0",
"eslint": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-react": "latest",
"jquery": "latest",
"node-sass": "3.8.0",
"open-browser-webpack-plugin": "0.0.2",
"sass-loader": "latest",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.13.2",
"webpack-dev-server": "1.16.2"
},
"keywords": [
"es6",
"web app",
"boilerplate"
],
"author": "Luciad NV",
"license": "MIT"
}