-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
136 lines (136 loc) · 4.37 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "root",
"private": true,
"devEngines": {
"node": "8.x || 9.x || 10.x || 11.x"
},
"workspaces": [
"packages/*",
"playground"
],
"scripts": {
"start": "vuepress dev docs",
"build": "lerna run build --scope @formily/antdv",
"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",
"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 .",
"format": "prettier --write ."
},
"devDependencies": {
"@ant-design/icons-vue": "^6.1.0",
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.4",
"@babel/plugin-transform-typescript": "^7.21.3",
"@babel/preset-env": "^7.11.16",
"@babel/preset-typescript": "^7.22.15",
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@commitlint/prompt-cli": "^14.1.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@types/glob": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"@vitejs/plugin-vue-jsx": "^1.0.0",
"@vitest/ui": "^0.16.0",
"@vue/test-utils": "^2.0.0",
"ant-design-vue": "^4.0.0",
"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",
"less-plugin-npm-import": "^2.1.0",
"lint-staged": "^8.2.1",
"moment": "^2.29.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rollup": "^3.23.1",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-external-globals": "^0.7.3",
"rollup-plugin-ignore-import": "^1.3.2",
"rollup-plugin-import-css": "^3.2.1",
"rollup-plugin-inject-process-env": "^1.3.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"stylus": "^0.58.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "~5.1.6",
"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.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"
}
}