-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 969 Bytes
/
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
{
"name": "webpack-babel",
"scripts": {
"server": "node_modules/.bin/http-server web/",
"build": "node_modules/.bin/webpack",
"build-verbose": "node_modules/.bin/webpack --display-modules -v",
"test:lint": "node_modules/.bin/eslint src/ --ext .js"
},
"dependencies": {
"http-server": "^0.9.0"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"clean-webpack-plugin": "^0.1.9",
"css-loader": "^0.23.1",
"eslint": "^3.0.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-loader": "^1.4.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"jshint": "^2.9.2",
"jshint-loader": "^0.8.3",
"node-sass": "^3.8.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1"
}
}