-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.82 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.82 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
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
{
"name": "vite-element-template",
"private": true,
"version": "1.6.3",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite serve --mode development --strictPort",
"preview": "pnpm run build:production && vite preview --port 8849",
"build:development": "vite build --mode staging && vue-tsc --noEmit && pnpm run deploy:development",
"build:production": "vite build --mode production && vue-tsc --noEmit",
"deploy:development": "node deploy/sftp.mjs --mode development",
"deploy:production": "node deploy/sftp.mjs --mode production",
"scp": "scp -r ./dist/* <User Name>@<Server Public IP>:./<Server directory>",
"lint:eslint": "eslint --fix --ext .ts,.js,.vue ./src ",
"lint:prettier": "prettier --write \"**/*.{js,cjs,ts,json,tsx,css,less,scss,vue,html,md}\"",
"lint:stylelint": "stylelint \"**/*.{css,scss,vue}\" --fix"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{cjs,json}": [
"prettier --write"
],
"*.{vue,html}": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
],
"*.{scss,css}": [
"stylelint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"type": "module",
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"@vitejs/plugin-vue": "^4.4.0",
"@vueup/vue-quill": "^1.2.0",
"@vueuse/core": "^10.1.2",
"@wcjiang/notify": "^2.1.3",
"axios": "^1.4.0",
"echarts": "^5.2.2",
"element-plus": "^2.3.14",
"element-plus-formkit": "^1.0.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"nprogress": "^0.2.0",
"path-browserify": "^1.0.1",
"path-to-regexp": "^8.1.0",
"pinia": "^2.0.33",
"quill-image-uploader": "^1.3.0",
"screenfull": "^6.0.0",
"sockjs-client": "1.6.1",
"sortablejs": "^1.15.0",
"stompjs": "^2.3.3",
"terser": "^5.19.3",
"uuid": "^11.0.3",
"vite-plugin-pages": "^0.32.4",
"vite-plugin-vue-meta-layouts": "^0.5.1",
"vue": "^3.3.4",
"vue-router": "^4.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@iconify-json/ep": "^1.1.10",
"@types/lodash": "^4.14.195",
"@types/markdown-it": "^13.0.7",
"@types/nprogress": "^0.2.0",
"@types/path-browserify": "^1.0.0",
"@types/sockjs-client": "^1.5.1",
"@types/sortablejs": "^1.15.1",
"@types/stompjs": "^2.3.5",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"autoprefixer": "^10.4.19",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.13.0",
"fast-glob": "^3.2.11",
"lint-staged": "^13.2.2",
"ora": "^8.2.0",
"postcss": "^8.4.38",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.8",
"sass": "^1.58.3",
"ssh2-sftp-client": "^12.0.0",
"stylelint": "^15.10.2",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^4.0.0",
"stylelint-config-recommended-scss": "^12.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.7.2",
"unplugin-auto-import": "^0.15.3",
"unplugin-icons": "^0.16.1",
"unplugin-vue-components": "^0.24.1",
"vite": "^7.1.5",
"vite-plugin-mock": "^3.0.0",
"vite-plugin-restart": "^0.4.2",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue-tsc": "^2.1.10"
},
"repository": "https://github.com/wxsub/vite-element-template.git",
"author": "wxsub.com studios © 2023",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}