-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.32 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
81
82
83
84
85
86
87
88
{
"name": "wifi-controller",
"version": "1.5.0",
"license": "MIT",
"author": "Mathieu Andrade",
"description": "WiFi Train DCC Control Software",
"main": "app.js",
"scripts": {
"dev": "vite",
"soft:dev": "cross-env NODE_ENV=development concurrently -k -n \"Vite,Electron\" -c \"yellow,blue\" \"npm run dev\" \"npm run soft:start\"",
"web:preview": "vite preview",
"web:serve": "serve ./dist/esp",
"soft:start": "electron .",
"build:esp": "cross-env TARGET=esp vite build",
"build:soft": "cross-env TARGET=soft vite build --mode soft && electron-builder"
},
"build": {
"productName": "Wifi-Controller",
"appId": "mathieuandrade.wifi-controller",
"files": [
"app.js",
{
"from": "build/soft/",
"to": ".",
"filter": [
"**/*"
]
}
],
"portable": {
"artifactName": "Wifi-Controller.exe"
},
"directories": {
"output": "build/pack"
},
"mac": {
"icon": "public/icons/icon.icns"
},
"win": {
"target": [
"portable"
],
"icon": "public/icons/icon.ico"
},
"linux": {
"icon": "public/icons"
}
},
"devDependencies": {
"@iconify/svelte": "^2.2.1",
"@sveltejs/vite-plugin-svelte": "^1.0.1",
"@tailwindcss/typography": "^0.5.4",
"@testing-library/svelte": "^3.1.3",
"autoprefixer": "^10.4.8",
"concurrently": "^7.3.0",
"cssnano": "^5.1.13",
"electron": "^20.0.3",
"electron-builder": "^23.3.3",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.16",
"postcss-load-config": "^4.0.1",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"serve": "^14.0.1",
"svelte": "^3.49.0",
"svelte-preprocess": "^4.10.7",
"vite": "^3.0.8",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-singlefile": "^0.13.5"
},
"dependencies": {
"canvas-gauges": "^2.1.7",
"cross-env": "^7.0.3",
"daisyui": "^2.24.0",
"express": "^4.18.1",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"svelte-i18n": "^3.4.0",
"svelte-spa-router": "^3.3.0",
"tailwindcss": "^3.1.8",
"ws": "^8.8.1"
}
}