-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.34 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
{
"name": "note-board",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "vue-tsc --noEmit && vite build",
"dev": "vite",
"init": "[ -e .init.lock ] || (touch .init.lock && pnpm run init:husky && pnpm run init:tauri-bindgen)",
"init:tauri-bindgen": "git clone -b v0.2.0 https://github.com/tauri-apps/tauri-bindgen.git pkg/tauri-bindgen",
"init:husky": "husky install && husky add .husky/commit-msg 'npx --no -- commitlint --edit $1'",
"lint": "eslint . --fix",
"preview": "vite preview",
"tauri": "tauri",
"test": "vitest --passWithNoTests"
},
"dependencies": {
"@tauri-apps/api": "^1.4.0",
"@vueuse/core": "^10.2.1",
"vue": "^3.3.4",
"vue-i18n": "^9.2.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@tauri-apps/cli": "^1.4.0",
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-vue": "^4.2.3",
"eslint": "^8.44.0",
"eslint-plugin-vue": "^9.15.1",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"sass": "^1.63.6",
"typescript": "^5.1.6",
"unplugin-auto-import": "^0.16.4",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.3.9",
"vitest": "^0.32.2",
"vue-tsc": "^1.8.3"
}
}