-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "vite-vue",
"version": "0.0.18",
"license": "MIT",
"type": "module",
"scripts": {
"prebuild": "rsw build",
"build": "vite build",
"check-types": "tsc --noemit --skipLibCheck",
"dev": "vite",
"go:build": "make build",
"lint": "npm run lint:eslint && npm run lint:tsc",
"lint:eslint": "eslint --ext .jsx,.js,.ts,.tsx,.vue src/",
"lint:fix": "eslint --ext .jsx,.js,.ts,.tsx,.vue src/ --fix",
"lint:tsc": "eslint --quiet \"{tests,src}/**/*.{js,ts,tsx,vue}\" && npm run check-types",
"rsw": "rsw",
"start": "vite",
"tauri": "tauri",
"tauri:build": "npm run go:build && tauri build",
"tauri:dev": "npm run go:build && tauri dev",
"watch": "rsw watch"
},
"dependencies": {
"@tauri-apps/api": "^1.6.0",
"@vitejs/plugin-vue": "^5.1.2",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"fix": "^0.0.6",
"vite": "^5.4.2",
"vite-plugin-rsw": "^2.0.11",
"vue": "^3.4.38"
},
"devDependencies": {
"@tauri-apps/cli": "^1.6.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-airbnb-with-typescript": "^8.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.27.0",
"lint-staged": "^15.2.9",
"typescript": "^5.5.4",
"wasm-pack": "^0.13.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
}
}