-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "vue3-vite-elctron-boilerplate",
"version": "0.0.0",
"main": "packages/backend/background.js",
"author": "voromade",
"private": true,
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 5050",
"electron:serve": "wait-on tcp:8080 && cross-env NODE_ENV=development electron .",
"app:serve": "concurrently -k \"yarn dev\" \"yarn electron:serve\"",
"pack": "electron-builder --dir",
"build:electron": "electron-builder build",
"bytenode": "electron ./packages/scripts/bytenode.js",
"app:build": "yarn build && yarn bytenode && yarn build:electron",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"bytenode": "^1.4.1",
"electron-store": "^8.1.0",
"moment": "^2.29.4",
"terser": "^5.17.6",
"vue": "^3.3.4",
"vue-router": "^4.2.4",
"vuex": "^4.1.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"asarmor": "^2.1.0-beta.10",
"concurrently": "7.6.0",
"cross-env": "^7.0.3",
"electron": "^25.0.1",
"electron-builder": "^23.6.0",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"javascript-obfuscator": "^4.0.2",
"rollup-plugin-obfuscator": "^1.0.3",
"rollup-plugin-uglify": "^6.0.4",
"uglify-js": "^3.17.4",
"vite": "^4.3.9",
"wait-on": "^7.0.1"
},
"build": {
"afterPack": "./packages/scripts/armor.js",
"copyright": "Copyright © 2022 ${author}",
"productName": "voromade Vue Template",
"appId": "payment.logs",
"directories": {
"output": "Production Builds/Version ${version}"
},
"nsis": {
"oneClick": true,
"perMachine": false,
"allowToChangeInstallationDirectory": false,
"shortcutName": "voromade Vue Template"
},
"files": [
"node_modules/**/*",
"package.json",
{
"from": "Built App/frontend",
"to": "packages/frontend",
"filter": [
"**/*"
]
},
{
"from": "Built App/backend",
"to": "packages/backend",
"filter": [
"**/*"
]
}
]
}
}