-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.56 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "reactwebpack",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --progress --config config/webpack.dev.js",
"start": "npm run dev",
"build:dll": "webpack --progress --config config/webpack.dll.js",
"build": "npm run clean && npm run build:dll && webpack --config config/webpack.prod.js",
"clean": "rimraf dist",
"report": "cross-env report=true npm run build",
"lint": "eslint --ext .js,.jsx src || exit 0",
"precommit": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "boqiaok",
"license": "ISC",
"dependencies": {
"@sentry/browser": "^4.5.3",
"axios": "^0.18.0",
"mobx": "^4.2.0",
"mobx-react": "^5.0.0",
"mobx-task": "^1.0.0-alpha.0",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-loadable": "^5.5.0",
"react-router-dom": "^4.2.2"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"devDependencies": {
"add-asset-html-webpack-plugin": "^2.1.3",
"autoprefixer": "^8.3.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cache-loader": "^1.2.2",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.7.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.8.3",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-loader": "^2.1.4",
"precss": "^3.1.2",
"prettier": "^1.15.3",
"react-hot-loader": "^4.0.1",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.1",
"style-loader": "^0.20.3",
"svg-url-loader": "^2.3.2",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3"
},
"engines": {
"node": "<= 8.9.0"
}
}