-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 4.02 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
{
"name": "vue3-node-backend",
"version": "1.0.0",
"description": "A beautiful dashboard for VueJS",
"author": "Ming <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"server": "vite --host",
"server:https": "yarn cert && vite --host",
"localhost": "vite --mode localhost --host",
"localhost:https": "yarn cert && vite --mode localhost --host",
"dev": "vite --mode dev --host",
"dev:https": "yarn cert && vite --mode dev --host",
"beta": "vite --mode beta --host",
"beta:https": "yarn cert && vite --mode beta --host",
"production": "vite --mode production --host",
"production:https": "yarn cert && vite --mode production --host",
"build": "vite build",
"build:dev": "vite build --mode dev",
"build:beta": "vite build --mode beta",
"build:production": "vite build --mode production",
"preview": "vite preview --port 5050",
"cert": "mkcert -key-file localhost-key.pem -cert-file localhost.pem localhost $(ipconfig getifaddr en0)",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"lint:rule": "eslint --print-config path::String",
"lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src",
"lint:format": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,vue,html,md}\"",
"lint:style": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"release": "standard-version -t ''",
"dev:mock": "cross-env USE_LOCAL_MOCK=true vite",
"build:mock": "cross-env USE_PROD_MOCK=true vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"dependencies": {
"@intlify/unplugin-vue-i18n": "^0.10.0",
"@quasar/extras": "^1.15.5",
"@quasar/quasar-app-extension-qcalendar": "^4.0.0-beta.16",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"@vuelidate/core": "^2.0.0-alpha.41",
"@vuelidate/validators": "^2.0.0-alpha.29",
"@vueup/vue-quill": "1.0.0",
"@vueuse/core": "^9.1.1",
"@xeger/quill-image-actions": "^0.7.1",
"@xeger/quill-image-formats": "^0.7.1",
"axios": "^0.27.2",
"dayjs": "^1.11.2",
"echarts": "^5.4.0",
"file-saver": "^2.0.5",
"js-cookie": "2.2.0",
"jszip": "^3.10.1",
"lodash-es": "^4.17.21",
"nprogress": "0.2.0",
"path-browserify": "^1.0.1",
"pinia": "^2.0.13",
"postcss-nested": "^6.0.1",
"qs": "^6.11.0",
"quasar": "^2.10.0",
"quill": "^2.0.0-dev.3",
"quill-blot-formatter": "^1.0.5",
"quill-delta-to-html": "^0.12.1",
"quill-image-resize-module--fix-imports-error": "^3.0.0",
"quill-image-uploader": "^1.2.3",
"quill-table-ui": "^1.0.7",
"react-dnd-html5-backend": "^16.0.1",
"sass": "1.32.12",
"sass-loader": "8.0.2",
"vue": "^3.2.33",
"vue-advanced-cropper": "^2.8.5",
"vue-i18n": "9",
"vue-router": "^4.0.14",
"vue3-dnd": "^2.0.4",
"vue3-photo-preview": "^0.3.0",
"vxe-table": "^4.3.5",
"xe-utils": "^3.5.7"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@quasar/vite-plugin": "^1.2.3",
"@sientech/eslint-config-frontend": "^2.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^8.2.0",
"happy-dom": "^7.7.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.1",
"mockjs": "^1.0.1-beta3",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.4",
"standard-version": "^9.5.0",
"stylelint": "^14.11.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard-scss": "^5.0.0",
"vite": "3.2.6",
"vite-plugin-mkcert": "^1.10.1",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-pwa": "^0.14.7",
"vite-plugin-stylelint": "^3.0.7",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-windicss": "^1.8.4",
"vitest": "^0.25.1",
"windicss": "^3.5.4"
}
}