-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.37 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.37 KB
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
{
"name": "ui-vue3",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev:mock": "vite --mode mock",
"check:i18n": "node --loader ts-node/esm src/base/i18n/sortI18n.ts",
"preview": "vite preview",
"test:unit": "vitest",
"build": "prettier --write src/ && vite build",
"format": "prettier --write src/",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"prepare": "husky || true",
"prettier-format": "prettier --write src/",
"prettier-check": "prettier --check src/"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"dependencies": {
"@antv/g2": "^5.1.12",
"@iconify/json": "^2.2.157",
"@iconify/vue": "^4.1.1",
"@types/lodash": "^4.14.202",
"@types/lodash-es": "^4.17.12",
"@types/nprogress": "^0.2.3",
"ant-design-vue": "4.x",
"axios": "^1.13.6",
"dayjs": "^1.11.13",
"gsap": "^3.12.7",
"js-cookie": "^3.0.5",
"js-yaml": "^4.1.0",
"less": "^4.2.0",
"lodash": "^4.17.21",
"monaco-editor": "^0.52.2",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^4.7.1",
"pinyin-pro": "^3.19.3",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"vue": "^3.3.10",
"vue-clipboard3": "^2.0.0",
"vue-i18n": "^9.8.0",
"vue-router": "^4.2.5",
"vue3-colorpicker": "^2.2.3"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node18": "^18.2.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.6",
"@vitejs/plugin-vue": "^4.5.1",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.3",
"@vue/tsconfig": "^0.4.0",
"cypress": "^13.6.1",
"eslint": "^8.49.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-vue": "^9.17.0",
"husky": "^9.0.6",
"jsdom": "^23.0.1",
"msw": "2.11.6",
"npm-run-all2": "^6.1.1",
"prettier": "^3.0.3",
"start-server-and-test": "^2.0.3",
"typescript": "~5.2.0",
"vite": "^5.0.5",
"vitest": "^1.0.1",
"vue-tsc": "^1.8.25"
},
"msw": {
"workerDirectory": [
"public"
]
}
}