-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 860 Bytes
/
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
{
"name": "electron-vite",
"private": true,
"version": "0.0.0",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"electron:dev": "nodemon --watch electron --exec electron .",
"start": "concurrently \"npm run dev\" \"npm run electron:dev\""
},
"dependencies": {
"@ant-design/icons-vue": "^6.1.0",
"ant-design-vue": "^2.2.8",
"date-fns": "^2.28.0",
"electron-store": "^8.0.1",
"vue": "^3.2.25",
"vue-router": "^4.0.14"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.2.0",
"concurrently": "^7.0.0",
"electron": "^17.1.2",
"nodemon": "^2.0.15",
"typescript": "^4.5.4",
"unplugin-auto-import": "^0.6.4",
"unplugin-vue-components": "^0.18.0",
"vite": "^2.8.0",
"vue-tsc": "^0.29.8"
}
}