-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
{
"name": "vite-evp",
"productName": "Vite EVP",
"version": "0.0.0",
"author": "asakiasako@foxmail.com",
"description": "Vite Electron-Vue-Python",
"scripts": {
"serve": "node scripts/watch.js",
"build": "cross-env MODE=production npm run build:packages && npm run build:electron",
"build:electron": "electron-builder build --config .electron-builder.config.js",
"build:packages": "npm run build:backend && npm run build:main && npm run build:preload && npm run build:renderer",
"build:main": "cd ./packages/main && vite build",
"build:preload": "cd ./packages/preload && vite build",
"build:renderer": "cd ./packages/renderer && vite build",
"build:backend": "cd ./packages/backend && poetry run build",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"preinstall": "cd ./packages/backend && poetry install"
},
"main": "packages/main/dist/index.cjs",
"dependencies": {
"@grpc/grpc-js": "^1.5.10",
"@msgpack/msgpack": "^2.7.2",
"ant-design-vue": "^3.1.0-rc.5",
"electron-updater": "^4.6.5",
"google-protobuf": "^3.20.0",
"lodash": "^4.17.21",
"pinia": "^2.0.11",
"vue": "^3.2.31",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.2.2",
"cross-env": "^7.0.3",
"electron": "17.1.2",
"electron-builder": "^22.14.13",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.5.0",
"eslint-config-standard": "^17.0.0-1",
"eslint-plugin-vue": "^8.2.0",
"less": "^4.1.2",
"vite": "^2.8.4"
}
}