-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.76 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.76 KB
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
{
"name": "@lsky/http-react",
"version": "0.0.4",
"main": "./lib/index.js",
"repository": "https://github.com/lsky-walt/http-react.git",
"author": "lsky_walt <lsky_walt@163.com>",
"license": "MIT",
"files": [
"lib",
"index.d.ts"
],
"keywords": [
"react",
"http",
"axios",
"http-component",
"axios-component"
],
"scripts": {
"start": "webpack-dev-server --config ./webpack/webpack.dev.config.js",
"build": "webpack --mode production --config ./webpack/webpack.prod.config.js"
},
"dependencies": {
"axios": "^0.19.2",
"lodash.isequal": "^4.5.0",
"lodash.pick": "^4.4.0",
"react": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-typescript": "^7.10.4",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.pick": "^4.4.6",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"autoprefixer": "^9.8.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.0.0",
"cssnano": "^4.1.10",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.4",
"html-webpack-plugin": "^4.3.0",
"less": "^3.12.2",
"less-loader": "^6.2.0",
"postcss-loader": "^3.0.0",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
"react-dom": "^16.13.1",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"axios": ">=0.19.0",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}