-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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": "electron-quick-start-vue-vanilla",
"version": "1.0.0",
"main": "dist-electron/main/index.js",
"description": "Electron Quick Start template with Vue JS without any UI library",
"author": "Muhammad Aufa Rijal <[email protected]>",
"license": "MIT",
"private": true,
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue"
],
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344/"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && electron-builder",
"preview": "vite preview",
"test": "vitest"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.3.3",
"electron": "^26.0.0",
"electron-builder": "^24.6.3",
"typescript": "^5.1.6",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.4.9",
"vite-plugin-electron": "^0.14.0",
"vite-plugin-electron-renderer": "^0.14.5",
"vitest": "^0.34.4",
"vue": "^3.3.4",
"vue-tsc": "^1.8.8"
},
"dependencies": {
"@types/node": "^20.6.0",
"electron-unhandled": "^4.0.1",
"knex": "^2.5.1",
"pinia": "^2.1.6",
"sqlite3": "^5.1.6",
"vue-router": "4",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1"
}
}