-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
121 lines (121 loc) · 4.09 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "brewblox-ui",
"version": "0.1.0",
"description": "UI for the Brewblox brewing controller",
"author": "Elco Jacobs / BrewPi B.V.",
"repository": "https://github.com/BrewBlox/brewblox-ui",
"license": "GPL-3.0",
"scripts": {
"ci": "yarn install --immutable",
"makecert": "bash dev/makecert.sh",
"initdev": "bash dev/initdev.sh",
"redis:load": "node dev/redis_load.mjs",
"redis:save": "node dev/redis_save.mjs",
"redis": "yarn redis:load",
"spark:save": "node dev/spark_save.mjs",
"spark:load": "node dev/spark_load.mjs",
"spark": "yarn spark:load",
"compose:setup": "yarn redis && yarn spark",
"compose:new": "yarn initdev && yarn makecert && docker compose up -d --force-recreate && yarn compose:setup",
"serve": "vite serve",
"start": "yarn compose:new && yarn serve",
"build": "vite build && du -h dist/",
"test": "vitest",
"test:ci": "vitest --run --coverage",
"lint:eslint": "eslint --ext .mjs,.js,.ts,.vue --ignore-path .gitignore ./src ./test",
"lint:prettier": "prettier --check ./src ./test ./dev/*.mjs ./*.js ./*.yml",
"lint:tsc": "vue-tsc --noEmit",
"lint": "yarn lint:tsc && yarn lint:eslint && yarn lint:prettier",
"lint:fix:eslint": "yarn lint:eslint --fix",
"lint:fix:prettier": "prettier --write ./src ./test ./dev/*.mjs ./*.js ./*.yml",
"lint:fix": "yarn lint:fix:eslint && yarn lint:fix:prettier",
"firmware": "bash dev/update-firmware.sh",
"components": "vue-global-type-gen && echo 'export {};' >> src/auto-import.d.ts"
},
"dependencies": {
"@quasar/extras": "^1.16.11",
"axios": "^1.6.8",
"brewblox-proto": "https://github.com/brewblox/brewblox-proto#commit=a58d8532c9337310966401f24afc2a64ec15701d",
"buffer": "^6.0.3",
"cm6-theme-basic-dark": "^0.2.0",
"codemirror": "^6.0.1",
"core-js": "^3.37.0",
"d3": "^7.9.0",
"date-fns": "^3.6.0",
"dompurify": "^3.1.2",
"elkjs": "^0.9.3",
"fromentries": "^1.3.2",
"immer": "^10.1.1",
"js-quantities": "^1.8.0",
"lodash": "^4.17.21",
"marked": "^12.0.2",
"mqtt": "^5.5.5",
"nanoid": "^5.0.7",
"parse-duration": "^1.1.0",
"pinia": "^2.1.7",
"plotly.js": "^2.32.0",
"pluralize": "^8.0.0",
"portal-vue": "^3.0.0",
"process": "^0.11.10",
"quasar": "^2.16.2",
"simple-keyboard": "^3.7.79",
"simple-keyboard-layouts": "^3.3.102",
"svg-path-properties": "^1.3.0",
"typescript-string-enums": "^1.0.0",
"url": "^0.11.3",
"vue": "^3.4.27",
"vue-router": "^4.3.2",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@quasar/quasar-app-extension-testing-unit-vitest": "^1.0.0",
"@quasar/vite-plugin": "^1.7.0",
"@rollup/plugin-inject": "^5.0.5",
"@types/d3": "^7.4.3",
"@types/dompurify": "^3.0.5",
"@types/js-quantities": "^1.6.6",
"@types/lodash": "^4.17.1",
"@types/marked": "^6.0.0",
"@types/minimist": "^1.2.5",
"@types/node": "20.12.11",
"@types/plotly.js": "^2.29.3",
"@types/pluralize": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.6.0",
"@vue/compiler-sfc": "^3.4.27",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-quasar": "^1.1.0",
"eslint-plugin-vue": "^9.25.0",
"jsdom": "^24.0.0",
"minimist": "^1.2.8",
"prettier": "^3.2.5",
"rollup": "^4.17.2",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "1.77.0",
"svgpath": "^2.6.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-checker": "^0.6.4",
"vitest": "^1.6.0",
"vue-global-type-gen": "^1.1.0",
"vue-tsc": "^2.0.16"
},
"engines": {
"node": ">= 18"
},
"browserslist": [
"defaults",
"not IE > 0"
],
"packageManager": "[email protected]"
}