-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "xc-pone",
"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}": [
"eslint"
],
"*.ts?(x)": [
"eslint"
],
"*.{json,less,css,md}": [
"prettier --write"
]
},
"dependencies": {
"@umijs/plugin-qiankun": "2.34.1",
"antd": "4.17.0-alpha.9",
"eslint-config-prettier": "8.3.0",
"react": "17.x",
"react-dom": "17.x",
"umi": "3.5.20"
},
"devDependencies": {
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@umijs/preset-react": "1.x",
"@umijs/test": "3.5.20",
"eslint": "7.x",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.1",
"lint-staged": "10.0.7",
"prettier": "2.2.0",
"typescript": "4.1.2",
"yorkie": "2.0.0"
}
}