-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (56 loc) · 1.84 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
{
"name": "myapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --hot --inline --open --config webpack.dev.js",
"build": "eslint --fix src && webpack --config webpack.prod.js",
"lint": "eslint --ext .js src",
"debug": "npm run build -- --progress --colors --profile --display-modules --display-reasons --display-error-details",
"analyze": "webpack --config webpack.prod.js --profile --json > stats.json"
},
"author": "h476564406",
"license": "MIT",
"dependencies": {
"autoprefixer": "^8.2.0",
"babel-polyfill": "^6.26.0",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"eslint-config-airbnb": "^16.1.0",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.18.0",
"react": "^16.4.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-node-externals": "^1.7.2",
"webpack-visualizer-plugin": "^0.1.11"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"ignore-loader": "^0.1.2",
"less": "^3.0.1",
"less-loader": "^4.1.0",
"postcss-flexbugs-fixes": "^3.3.0",
"postcss-loader": "^2.1.3",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack-dev-server": "^2.9.5"
}
}