-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.54 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
{
"name": "v3-tauri-vite",
"version": "1.0.0",
"description": "tauri app",
"license": "MIT",
"author": {
"name": "nevlf",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/nevlf/v3-tauri-vite"
},
"scripts": {
"vite:dev": "vite",
"vite:build": "vue-tsc --noEmit && vite build",
"dev": "tauri dev",
"build": "tauri build",
"build:debug": "tauri build --debug",
"build:x64": "tauri build --target x86_64-pc-windows-msvc",
"build:x32": "tauri build --target i686-pc-windows-msvc",
"lint:eslint": "eslint --cache --max-warnings 0 \"src/**/*.{vue,js,ts,tsx}\" --fix",
"lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
"lint": "pnpm lint:eslint && pnpm lint:prettier",
"prepare": "husky install"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.10",
"@tauri-apps/api": "^1.2.0",
"axios": "^1.3.4",
"dayjs": "^1.11.7",
"element-plus": "^2.2.32",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"path-browserify": "^1.0.1",
"path-to-regexp": "^6.2.1",
"pinia": "^2.0.32",
"screenfull": "^6.0.2",
"vue": "^3.2.47",
"vue-router": "^4.1.6",
"vxe-table": "^4.3.10",
"vxe-table-plugin-element": "^3.0.6",
"xe-utils": "^3.5.7"
},
"devDependencies": {
"@tauri-apps/cli": "^1.2.3",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.14.0",
"@types/nprogress": "^0.2.0",
"@types/path-browserify": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"eslint": "^8.34.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"terser": "^5.16.4",
"typescript": "^4.9.5",
"unocss": "^0.50.0",
"vite": "^4.1.4",
"vite-plugin-svg-icons": "^2.0.1",
"vite-svg-loader": "^4.0.0",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^1.1.7"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{scss,less,css,html,md}": [
"prettier --write"
],
"package.json": [
"prettier --write"
],
"{!(package)*.json,.!(browserslist)*rc}": [
"prettier --write--parser json"
]
}
}