-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 1.28 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
{
"name": "umi",
"description": "umi",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "prettier --write",
"build": "ppx build",
"build:cloud": "UMI_ENV=cloud ppx build"
},
"dependencies": {
"@umijs/max": "^4.0.89",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.22.3",
"umi": "^4.1.1"
},
"devDependencies": {
"@types/mockjs": "^1.0.6",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"dts-bundle-generator": "^9.3.1",
"lint-staged": "^10.0.7",
"mockjs": "^1.1.0",
"prettier": "^2.2.0",
"typescript": "^5.4.2"
},
"eslintConfig": {
"extends": [
"@ali/eslint-config-ppx-react"
],
"globals": {}
},
"stylelint": {
"extends": [
"@ali/stylelint-config-ppx"
],
"rules": {
"selector-pseudo-class-no-unknown": null
}
},
"lint-staged": {
"*.{js,jsx,ts}": [
"yarn lint"
],
"*.{less}": [
"yarn stylelint"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": "16.15.0",
"install-alinode": "7"
},
"tnpm": {
"mode": "npm",
"lockfile": "enable"
},
"repository": "[email protected]:portkey-test/umi-plugin.git"
}