-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.62 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
{
"name": "hamm",
"version": "0.1.2",
"main": "main.js",
"description": "HAMM (Home Assistant Magic Mirror)",
"author": "Jon Kristian Nilsen <[email protected]>",
"homepage": "https://github.com/jonkristian/hamm",
"scripts": {
"start": "NODE_ENV=development concurrently \"npm run web:watch\" \"npm run electron:start\"",
"web:watch": "vite",
"web:build": "vite build",
"electron:start": "electron .",
"build": "vite build && electron-builder --linux",
"build:arm": "vite build && electron-builder --linux deb --arm64",
"deploy": "vite build && electron-builder --linux deb --arm64 --publish always"
},
"build": {
"publish": [
"github"
]
},
"devDependencies": {
"@iconify/svelte": "^2.2.1",
"@sveltejs/vite-plugin-svelte": "^1.0.1",
"@tsconfig/svelte": "^3.0.0",
"@types/lodash": "^4.14.185",
"concurrently": "^8.0.1",
"electron": "^24.3.1",
"electron-builder": "^23.6.0",
"lodash": "^4.17.21",
"postcss": "^8.4.16",
"sass": "^1.54.9",
"svelte": "^3.49.0",
"svelte-check": "^2.8.0",
"svelte-feather-icons": "^4.0.0",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"vite": "^3.0.7"
},
"dependencies": {
"@fontsource/arimo": "^4.5.9",
"@fontsource/roboto": "^4.5.8",
"@fontsource/urbanist": "^4.5.14",
"apexcharts": "^3.35.5",
"chokidar": "^3.5.3",
"dayjs": "^1.11.5",
"events": "^3.3.0",
"isomorphic-ws": "^5.0.0",
"path-browserify": "^1.0.1",
"svelte-apexcharts": "^1.0.2",
"svelte-material-icons": "^2.0.4",
"svelte-spa-router": "^3.3.0"
}
}