-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
129 lines (129 loc) · 3.84 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
{
"name": "arco-admin",
"type": "module",
"private": true,
"version": "0.2.3",
"license": "MIT",
"author": {
"name": "oljc",
"email": "[email protected]"
},
"scripts": {
"dev": "vite",
"serve": "vite --mode production",
"build": "rimraf dist && vite build",
"build:staging": "rimraf dist && vite build --mode staging",
"preview": "vite preview",
"preview:build": "pnpm build && vite preview",
"type:check": "tsc --noEmit && vue-tsc --noEmit --skipLibCheck",
"eslint": "eslint --max-warnings 0 \"{src,mock,config}/**/*.{vue,js,ts,tsx}\"",
"eslint:fix": "eslint --max-warnings 0 \"{src,mock,config}/**/*.{vue,js,ts,tsx}\" --fix",
"stylelint": "stylelint \"**/*.{html,vue,css,less}\"",
"stylelint:fix": "stylelint \"**/*.{html,vue,css,less}\" --fix",
"prettier": "prettier --check \"src/**/*.{js,ts,json,tsx,css,scss,vue,html,md}\"",
"prettier:fix": "prettier --write \"src/**/*.{js,ts,json,tsx,css,scss,vue,html,md}\"",
"lint": "pnpm eslint && pnpm stylelint && pnpm prettier",
"lint:fix": "pnpm eslint:fix && pnpm stylelint:fix && pnpm prettier:fix",
"lint-staged": "npx lint-staged",
"clean:cache": "rimraf .eslintcache && rimraf node_modules && pnpm install",
"prepare": "husky",
"release": "bumpp"
},
"keywords": [
"arco-design-vue",
"arco-admin",
"typescript",
"pinia",
"vue3",
"vite",
"esm"
],
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.vue": [
"stylelint --fix",
"prettier --write",
"eslint --fix"
],
"*.{html,less,css}": [
"stylelint --fix",
"prettier --write"
],
"package.json": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"dependencies": {
"@arco-design/color": "^0.4.0",
"@arco-design/web-vue": "^2.56.3",
"@visactor/vchart": "^1.13.2",
"@visactor/vchart-arco-theme": "^1.12.2",
"@vueuse/core": "^10.11.1",
"axios": "^1.7.9",
"dayjs": "^1.11.13",
"lodash": "^4.17.21",
"mitt": "^3.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.3.0",
"query-string": "^9.1.1",
"sortablejs": "^1.15.6",
"vue": "3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@arco-plugins/vite-vue": "^1.4.5",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@eslint/js": "^9.17.0",
"@types/lodash": "^4.17.14",
"@types/mockjs": "^1.0.10",
"@types/nprogress": "^0.2.3",
"@types/sortablejs": "^1.15.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"autoprefixer": "^10.4.20",
"bumpp": "^9.9.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"husky": "^9.1.7",
"less": "^4.2.1",
"lint-staged": "^15.3.0",
"mockjs": "^1.1.0",
"postcss-html": "^1.7.0",
"postcss-less": "^6.0.0",
"prettier": "^3.4.2",
"rimraf": "^5.0.10",
"rollup-plugin-visualizer": "^5.14.0",
"stylelint": "^16.12.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-less": "^3.0.1",
"stylelint-prettier": "^5.0.2",
"typescript": "^5.7.2",
"unplugin-auto-import": "^0.17.8",
"unplugin-vue-components": "^0.27.5",
"vite": "^5.4.11",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-remove-console": "^2.2.0",
"vite-svg-loader": "^5.1.0",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.2.0"
},
"engines": {
"node": "^18.0.0 || >=20.0.0",
"pnpm": ">=8.11.0"
},
"packageManager": "[email protected]"
}