-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·76 lines (76 loc) · 2.28 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
{
"name": "activityframework",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"build": "rm -rf ./build && webpack --mode=production",
"build:uat": "rm -rf ./build && webpack --mode=production --isuat=true",
"dev": "webpack-dev-server --mode=development",
"report": "rm -rf ./build && webpack --mode=production --report=true"
},
"author": "eightfeet",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.1.2",
"antd-mobile": "^2.3.1",
"classnames": "^2.2.6",
"core-js": "^3.2.1",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"es6-promise": "^4.2.5",
"history": "^4.7.2",
"mime": "^2.3.1",
"preact": "^10.0.5",
"preact-router": "^3.1.0",
"qs": "^6.9.1",
"react-loadable": "^5.5.0",
"react-redux": "^7.1.3",
"redux": "^4.0.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"autoprefixer": "^9.3.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-import": "^1.13.0",
"copy-webpack-plugin": "^4.5.4",
"css-loader": "^1.0.1",
"cssnano": "^4.1.7",
"eslint": "^5.8.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.4",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"raw-loader": "^0.5.1",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^1.1.2",
"webpack": "^4.23.1",
"webpack-bundle-analyzer": "^3.0.3"
},
"browserslist": [
"Android 2.3",
"Android >= 4",
"Chrome >= 29",
"iOS >= 6",
"Safari >= 7.1"
]
}