-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "webpack-demo",
"version": "1.0.0",
"description": "",
"main": "app.js",
"dependencies": {
"react": "^0.14.8",
"react-bootstrap": "^0.29.5",
"react-dom": "^0.14.8"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-extra-rules": "^0.6.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-react": "^5.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"mocha": "^2.5.3",
"node-sass": "^3.7.0",
"sass-loader": "^3.2.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"start": "npm run build && webpack-dev-server --content-base dist/ --hot --inline --colors",
"build": "rm -rf dist && NODE_ENV=production node node_modules/.bin/webpack && cp app/index.html dist/index.html",
"test": "npm test",
"lint": "eslint app"
},
"author": "mdell",
"license": "ISC"
}