-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "tauri-app",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "RUST_BACKTRACE=1 tauri dev --verbose",
"tauri:test": "tauri build --debug --verbose",
"tauri:prod": "tauri build --verbose",
"lint": "eslint --ext .js,.ts,.vue --fix src",
"format": "prettier --write .",
"prepare": "husky install"
},
"engines": {
"node": "^14.19.0"
},
"packageManager": "yarn@1.22.19",
"dependencies": {
"@tauri-apps/api": "^1.0.2",
"vue": "^3.2.25"
},
"devDependencies": {
"@tauri-apps/cli": "^1.0.3",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@vitejs/plugin-vue": "^2.3.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^9.2.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"vite": "^2.9.9",
"vue-eslint-parser": "^9.0.3",
"vue-tsc": "^0.38.2",
"husky": "^8.0.0"
}
}