-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
56 lines (56 loc) · 1.38 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
{
"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 max build",
"dev": "max dev",
"build": "max build",
"postinstall": "max setup",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"prepare": "husky"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"engines": {
"node": ">=10.0.0"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@umijs/max": "^4.2.11",
"antd-mobile": "^5.36.1",
"antd-mobile-icons": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/mockjs": "^1.0.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@umijs/lint": "^4.2.11",
"@umijs/plugin-antd-mobile": "^1.2.0",
"@umijs/test": "^4.0.70",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"mockjs": "^1.1.0",
"postcss-px-to-viewport": "^1.1.1",
"prettier": "^3.3.2",
"stylelint": "^14",
"typescript": "^5.1.3",
"yorkie": "^2.0.0"
},
"peerDependencies": {}
}