forked from hqwlkj/umi-antd-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
{
"name": "umi-antd-mobile",
"version": "0.0.1",
"author": "Yanghc",
"description": "基于[email protected] + antd-mobile@next 快速构建h5及app应用",
"private": true,
"scripts": {
"analyze": "cross-env ANALYZE=1 umi build",
"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",
"commit-msg": "fabric verify-commit"
},
"engines": {
"node": ">=10.0.0"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"antd-mobile": "^5.0.0-rc.25",
"antd-mobile-icons": "^0.2.2",
"postcss": "^8.4.5",
"react": "17.x",
"react-dom": "17.x",
"umi": "^3.5.20"
},
"devDependencies": {
"@types/mockjs": "^1.0.6",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@umijs/fabric": "^2.10.1",
"@umijs/preset-react": "2.x",
"@umijs/test": "^3.5.20",
"lint-staged": "^12.3.3",
"mockjs": "^1.1.0",
"postcss-px-to-viewport": "^1.1.1",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"yorkie": "^2.0.0"
}
}