-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
113 lines (113 loc) · 3.47 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "root",
"private": true,
"devEngines": {
"node": "8.x || 9.x || 10.x || 11.x"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start": "vuepress dev docs",
"build": "formily-tpl build",
"build:docs": "vuepress build docs",
"test": "vitest run --coverage",
"test:prod": "vitest run --coverage --silent",
"test:ui": "vitest --ui",
"preversion": "yarn install --ignore-engines && npm run build && npm run lint && npm run test",
"version:alpha": "lerna version prerelease --preid alpha",
"version:beta": "lerna version prerelease --preid beta",
"version:rc": "lerna version prerelease --preid rc",
"version:patch": "lerna version patch",
"version:minor": "lerna version minor",
"version:preminor": "lerna version preminor --preid beta",
"version:major": "lerna version major",
"release": "lerna publish from-package --yes",
"lint": "eslint ."
},
"devDependencies": {
"@ant-design/icons-vue": "^6.1.0",
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@commitlint/prompt-cli": "^14.1.0",
"@formily/template": "1.0.0-alpha.20",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vitest/ui": "^0.16.0",
"@vue/test-utils": "^2.0.0",
"ant-design-vue": "^3.2.9",
"c8": "^7.11.3",
"codesandbox": "^2.2.3",
"copy-to-clipboard": "^3.3.1",
"core-js": "^3.23.1",
"escape-html": "^1.0.3",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.1.1",
"ghooks": "^2.0.4",
"jsdom": "^20.0.0",
"lerna": "^4.0.0",
"less": "^4.1.2",
"less-loader": "^5.0.0",
"lint-staged": "^8.2.1",
"moment": "^2.29.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"stylus": "^0.58.1",
"ts-node": "^9.1.1",
"typescript": "^4.4.4",
"vitest": "^0.16.0",
"vue": "^3.2.37",
"vuepress": "2.0.0-beta.38",
"vuepress-plugin-typescript": "^0.3.1",
"vuepress-theme-dumi": "^0.1.1"
},
"resolutions": {
"vuepress": "2.0.0-beta.38",
"@vuepress/client": "2.0.0-beta.38",
"@vuepress/core": "2.0.0-beta.38",
"@vuepress/utils": "2.0.0-beta.38",
"@vuepress/plugin-theme-data": "2.0.0-beta.38",
"@vuepress/shared": "2.0.0-beta.38",
"@vuepress/plugin-active-header-links": "2.0.0-beta.38",
"@vuepress/plugin-back-to-top": "2.0.0-beta.38",
"@vuepress/plugin-container": "2.0.0-beta.38",
"@vuepress/plugin-external-link-icon": "2.0.0-beta.38",
"@vuepress/plugin-git": "2.0.0-beta.38",
"@vuepress/plugin-medium-zoom": "2.0.0-beta.38",
"@vuepress/plugin-nprogress": "2.0.0-beta.38",
"@vuepress/plugin-prismjs": "2.0.0-beta.38",
"@vuepress/plugin-search": "2.0.0-beta.38"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formilyjs/antdv-x3.git"
},
"config": {
"ghooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --ext .ts,.tsx,.js",
"pretty-quick --staged",
"git add"
],
"*.md": [
"pretty-quick --staged",
"git add"
]
},
"peerDependencies": {
"vue": "^3.2.37"
}
}