-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"private": true,
"scripts": {
"start": "umi dev",
"build": "umi build",
"postinstall": "umi generate tmp",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "umi-test",
"test:coverage": "umi-test --coverage"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@better-scroll/core": "^2.4.2",
"@better-scroll/pull-up": "^2.4.2",
"@umijs/plugin-antd-mobile": "^1.2.0",
"ahooks": "2.10.12",
"alita": "^2.8.36",
"amfe-flexible": "^2.2.1",
"antd-mobile": "^5.11.2",
"antd-mobile-icons": "^0.2.2",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"postcss-px2rem": "^0.3.0",
"qs": "^6.10.3",
"react": "17.x",
"react-dom": "17.x",
"umi": "^3.5.23",
"umi-request": "^1.4.0",
"url-parse": "^1.5.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@umijs/preset-react": "^1.8.30",
"@umijs/test": "^3.5.23",
"lint-staged": "^10.0.7",
"prettier": "^2.2.0",
"typescript": "^4.1.2",
"yorkie": "^2.0.0"
}
}