-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.94 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.94 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
{
"name": "vue3-basic",
"description": "Vue3 projects example",
"author": {
"name": "lisnote",
"url": "https://github.com/lisnote"
},
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite --host",
"mock": "vite --mode mock --host",
"staging": "vite --mode production --host",
"build": "vue-tsc && vite build",
"preview": "vite preview --host",
"lint": "pnpm lint:stylelint && pnpm lint:prettier && pnpm lint:eslint",
"lint:stylelint": "stylelint **/*.{css,scss,vue,html} --fix --ignore-path .gitignore",
"lint:prettier": "prettier --write \"./**/*.{js,ts,json,css,scss,vue,html,md}\" --ignore-path .gitignore",
"lint:eslint": "eslint \"./**/{\\.*,*}.{vue,js,ts}\" --fix --ignore-path .gitignore",
"prepare": "husky install"
},
"dependencies": {
"@amap/amap-jsapi-loader": "^1.0.1",
"@codemirror/lang-javascript": "^6.1.9",
"@codemirror/theme-one-dark": "^6.1.2",
"@rollup/plugin-yaml": "^4.1.2",
"@types/dplayer": "^1.25.2",
"@types/marked": "^5.0.1",
"@types/qrcode": "^1.5.5",
"@vueuse/core": "^9.6.0",
"@wangeditor/editor": "^5.1.23",
"axios": "^1.1.3",
"codemirror": "^6.0.1",
"dayjs": "^1.11.7",
"dplayer": "^1.27.1",
"echarts": "^5.4.1",
"element-plus": "^2.3.7",
"highlight.js": "^11.8.0",
"lodash-es": "^4.17.21",
"marked": "^5.1.1",
"marked-gfm-heading-id": "^3.0.6",
"marked-highlight": "^2.0.1",
"nprogress": "^0.2.0",
"pdfjs-dist": "^3.8.162",
"pinia": "^2.0.23",
"qrcode": "^1.5.3",
"socket.io-client": "^4.6.1",
"three": "^0.153.0",
"ts-md5": "^1.3.1",
"vue": "^3.3.11",
"vue-countup-v3": "^1.3.0",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@iconify/vue": "^4.1.1",
"@types/express": "^4.17.14",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.11.8",
"@types/nprogress": "^0.2.0",
"@types/three": "^0.152.1",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "2",
"@vue/eslint-config-typescript": "^11.0.2",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^9.7.0",
"express": "^4.18.2",
"husky": "^8.0.1",
"json5": "^2.2.1",
"lint-staged": "^15.2.0",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"prettier": "^3.1.0",
"sass": "^1.55.0",
"socket.io": "^4.6.1",
"stylelint": "^14.16.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"typescript": "^5.1.6",
"unocss": "^0.57.7",
"vconsole": "^3.15.1",
"vite": "^3.2.7",
"vite-svg-loader": "^4.0.0",
"vue-tsc": "^1.8.10"
},
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.3.0"
}