forked from antdv-pro/antdv-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.76 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
{
"name": "antdv-pro",
"type": "module",
"version": "1.1.0",
"packageManager": "pnpm@8.10.0",
"author": "aibayanyu <aibayanyu@qq.com>",
"repository": "antdv-pro/antdv-pro",
"scripts": {
"dev": "mist",
"build": "vue-tsc && mist build",
"clear:vercel": "rm -rf ./vercel.json",
"build:vercel": "run-s clear:vercel build:nitro",
"build:nitro": "mist build nitro",
"start:nirto": "node .output/server/index.mjs",
"preview": "mist preview",
"lint": "eslint src --fix",
"typecheck": "vue-tsc --noEmit",
"bump:patch": "changelogen --bump --output CHANGELOG.md --release",
"bump:minor": "changelogen --bump --output CHANGELOG.md --release --minor",
"bump:major": "changelogen --bump --output CHANGELOG.md --release --major",
"prepare": "husky install",
"dir-tree": "esno ./scripts/dir-tree",
"gen:uno": "esno ./scripts/gen-unocss",
"toJS": "esno scripts/to-js"
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@antv/g2plot": "^2.4.31",
"@antv/l7": "^2.20.14",
"@ctrl/tinycolor": "^4.0.3",
"@v-c/utils": "^0.0.26",
"@vueuse/core": "^10.7.2",
"ant-design-vue": "^4.1.1",
"axios": "^1.6.5",
"dayjs": "^1.11.10",
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"pinia": "^2.1.7",
"vue": "^3.4.15",
"vue-i18n": "^9.9.0",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@mistjs/cli": "0.0.1-beta.7",
"@mistjs/vite-plugin-preload": "^0.0.1",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.14.202",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.5",
"@types/treeify": "^1.0.3",
"@vitejs/plugin-vue": "^5.0.3",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/test-utils": "^2.4.3",
"antdv-component-resolver": "^1.0.7",
"antdv-style": "0.0.1-beta.2",
"changelogen": "^0.5.5",
"cross-env": "^7.0.3",
"directory-tree": "^3.5.1",
"esbuild": "^0.19.12",
"eslint": "^8.56.0",
"esno": "^0.17.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"less": "^4.2.0",
"lint-staged": "^14.0.1",
"lodash": "^4.17.21",
"nitropack": "^2.8.1",
"npm-run-all": "^4.1.5",
"picocolors": "^1.0.0",
"treeify": "^1.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"unocss": "^0.57.7",
"unocss-preset-chinese": "^0.3.2",
"unocss-preset-ease": "^0.0.3",
"unplugin-auto-import": "^0.16.7",
"unplugin-config": "^0.1.4",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.12",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.27"
},
"lint-staged": {
"**/*.{vue,ts,js,jsx,tsx}": "eslint src --fix"
}
}