-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
68 lines (68 loc) · 1.96 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
{
"name": "td27-admin",
"version": "2.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build:stage": "vue-tsc --noEmit && vite build --mode staging",
"build:prod": "vue-tsc --noEmit && vite build",
"preview:stage": "pnpm build:stage && vite preview",
"preview:prod": "pnpm build:prod && vite preview",
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,tests,types}/**/*.{vue,js,ts}\" --fix",
"lint:prettier": "prettier --write \"{src,tests,types}/**/*.{vue,js,ts,json,css,less,scss,html,md}\"",
"lint": "pnpm lint:eslint && pnpm lint:prettier"
},
"dependencies": {
"@element-plus/icons-vue": "2.3.1",
"axios": "1.7.5",
"dayjs": "1.11.13",
"element-plus": "2.8.1",
"lodash-es": "4.17.21",
"mitt": "3.0.1",
"normalize.css": "8.0.1",
"nprogress": "0.2.0",
"path-browserify": "1.0.1",
"path-to-regexp": "7.1.0",
"pinia": "2.2.2",
"screenfull": "6.0.2",
"vue": "3.4.38",
"vue-json-pretty": "^2.2.4",
"vue-router": "4.4.3"
},
"devDependencies": {
"@types/lodash-es": "4.17.12",
"@types/node": "22.5.0",
"@types/nprogress": "0.2.3",
"@types/path-browserify": "1.0.3",
"@typescript-eslint/eslint-plugin": "8.2.0",
"@typescript-eslint/parser": "8.2.0",
"@vitejs/plugin-vue": "5.1.2",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/eslint-config-typescript": "13.0.0",
"eslint": "8.57.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-vue": "9.27.0",
"lint-staged": "15.2.9",
"prettier": "3.3.3",
"sass": "1.77.8",
"typescript": "5.5.4",
"vite": "5.4.2",
"vite-plugin-svg-icons": "2.0.1",
"vite-svg-loader": "5.1.0",
"vue-eslint-parser": "9.4.3",
"vue-tsc": "2.0.29"
},
"lint-staged": {
"*.{vue,js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{css,less,scss,html,md}": [
"prettier --write"
],
"package.json": [
"prettier --write"
]
},
"license": "MIT"
}