-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 856 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
33
34
{
"name": "vite-project",
"version": "0.0.0",
"main": "src/main/index.js",
"scripts": {
"start": "NODE_ENV=development concurrently \"npm:web:watch\" \"npm:electron:start\"",
"web:watch": "vite",
"electron:start": "electron src/main",
"build": "vite build && electron-builder"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.30",
"autoprefixer": "^10.4.2",
"concurrently": "^7.0.0",
"electron": "^16.0.7",
"electron-builder": "^22.14.5",
"postcss": "^8.4.5",
"postcss-load-config": "^3.1.1",
"svelte": "^3.44.0",
"svelte-preprocess": "^4.10.1",
"tailwindcss": "^3.0.12",
"vite": "^2.7.2"
},
"build": {
"files": [
"src/**/*"
]
},
"dependencies": {
"@electron/remote": "^2.0.5",
"lodash": "^4.17.21",
"serialport": "^10.3.0"
}
}