-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
79 lines (79 loc) · 2.05 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": "ant-design-mobile-pro",
"version": "1.0.0",
"private": true,
"homepage": "https://theprimone.top/ant-design-mobile-pro",
"description": "Use Ant Design Mobile like And Design Pro",
"scripts": {
"start": "umi dev",
"build": "umi build",
"test": "umi test",
"lint:es": "eslint --ext .js src mock tests",
"lint:ts": "tslint \"src/**/*.ts\" \"src/**/*.tsx\"",
"precommit": "lint-staged",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"antd-mobile": "^2.3.1",
"classnames": "^2.2.6",
"dva": "^2.6.0-beta.6",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"nzh": "^1.0.4",
"qs": "^6.7.0",
"rc-form": "^2.4.8",
"react": "^16.8.6",
"react-amap": "^1.2.8",
"react-amap-plugin-custom-geolocation": "^1.0.1",
"react-dom": "^16.8.6",
"react-transition-group": "^4.2.2",
"umi-request": "^1.2.2"
},
"devDependencies": {
"@types/jest": "^23.3.12",
"@types/qs": "^6.5.3",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/react-test-renderer": "^16.0.3",
"@umijs/preset-react": "^1.4.11",
"babel-eslint": "^9.0.0",
"babel-plugin-import": "^1.12.0",
"eslint": "^5.4.0",
"eslint-config-umi": "^1.4.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^2.1.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"postcss-px-to-viewport": "^1.1.1",
"react-test-renderer": "^16.7.0",
"roadhog-api-doc": "^1.1.2",
"tslint": "^5.12.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"umi": "^3.1.0",
"umi-plugin-gh-pages": "^0.2.0",
"umi-types": "^0.3.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"git add"
],
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">=8.0.0"
}
}