-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.38 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
{
"name": "zarm-demo",
"version": "0.0.1",
"description": "demo for zarm",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server",
"build": "rimraf assets && webpack --config webpack.config.prod.js",
"lint": "eslint --ext .js,.jsx src"
},
"author": "jerome.lin@zhongan.com",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.4.2",
"@babel/runtime-corejs2": "^7.4.2",
"@types/classnames": "^2.2.3",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"autoprefixer": "^9.5.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-import": "^1.11.0",
"browserslist": "^4.4.1",
"conventional-changelog-cli": "^1.3.22",
"core-js": "^3.0.1",
"css-loader": "^3.0.0",
"css-vars-ponyfill": "^2.0.2",
"eslint": "^5.16.0",
"eslint-config-za": "^2.0.0-alpha.9",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"file-loader": "^1.1.11",
"history": "^4.7.2",
"html-webpack-plugin": "^3.2.0",
"lint-staged": "^4.3.0",
"mini-css-extract-plugin": "^0.7.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^3.1.2",
"react-router-dom": "^5.0.1",
"rimraf": "^2.6.3",
"sass": "^1.20.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.18.2",
"stylelint": "^7.12.0",
"stylelint-config-za": "^0.1.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"zarm": "^2.0.0-alpha.39"
},
"browserslist": [
"last 2 versions",
"Firefox ESR",
"> 1%",
"ie >= 9",
"iOS >= 7",
"Android >= 4"
]
}