-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"name": "react-webpack-boilerplate",
"version": "0.0.1",
"description": "React Webpack Boilerplate",
"main": "src/index.js",
"scripts": {
"build": "npm run clean && webpack",
"clean": "rm -rf ./build",
"lint": "eslint . .eslintrc.js --cache",
"start": "webpack-dev-server"
},
"author": "Greg Douglas <gwshark0@gmail.com>",
"license": "MIT",
"dependencies": {
"autoprefixer": "^6.4.0",
"classnames": "^2.2.5",
"html-webpack-plugin": "^2.22.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"webpack": "^1.13.1",
"webpack-merge": "^0.14.1",
"webpack-validator": "^2.2.6"
},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.23.1",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"node-sass": "^3.8.0",
"postcss-loader": "^0.9.1",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack-dev-server": "^1.14.1"
}
}