diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-11-27 18:41:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-27 09:41:12 -0800 |
commit | 70f583c3e1d7c4bc1cca6b9c1cec6ca2e1f9e7b3 (patch) | |
tree | 4a81ec8383a9d6ee6b58138d2a5fd429c9161799 /package.json | |
parent | 98fe0a393970070fa04b5f37dbbb7a4c3ef82beb (diff) | |
download | homer-70f583c3e1d7c4bc1cca6b9c1cec6ca2e1f9e7b3.tar.gz homer-70f583c3e1d7c4bc1cca6b9c1cec6ca2e1f9e7b3.tar.zst homer-70f583c3e1d7c4bc1cca6b9c1cec6ca2e1f9e7b3.zip |
Octoprint service (#324) (#560)v22.11.2
Add Octoprint service.
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package.json b/package.json index 93953c1..c97dc56 100644 --- a/package.json +++ b/package.json | |||
@@ -3,6 +3,7 @@ | |||
3 | "version": "22.07.2", | 3 | "version": "22.07.2", |
4 | "scripts": { | 4 | "scripts": { |
5 | "dev": "vite", | 5 | "dev": "vite", |
6 | "mock": "http-server dummy-data/ --cors", | ||
6 | "build": "vite build", | 7 | "build": "vite build", |
7 | "preview": "vite preview --port 5050", | 8 | "preview": "vite preview --port 5050", |
8 | "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore" | 9 | "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore" |
@@ -10,9 +11,9 @@ | |||
10 | "dependencies": { | 11 | "dependencies": { |
11 | "@fortawesome/fontawesome-free": "^6.2.0", | 12 | "@fortawesome/fontawesome-free": "^6.2.0", |
12 | "bulma": "^0.9.4", | 13 | "bulma": "^0.9.4", |
13 | "yaml": "^2.1.3", | ||
14 | "lodash.merge": "^4.6.2", | 14 | "lodash.merge": "^4.6.2", |
15 | "vue": "^3.2.41" | 15 | "vue": "^3.2.41", |
16 | "yaml": "^2.1.3" | ||
16 | }, | 17 | }, |
17 | "devDependencies": { | 18 | "devDependencies": { |
18 | "@rushstack/eslint-patch": "^1.2.0", | 19 | "@rushstack/eslint-patch": "^1.2.0", |
@@ -20,6 +21,7 @@ | |||
20 | "@vue/eslint-config-prettier": "^7.0.0", | 21 | "@vue/eslint-config-prettier": "^7.0.0", |
21 | "eslint": "^8.26.0", | 22 | "eslint": "^8.26.0", |
22 | "eslint-plugin-vue": "^9.6.0", | 23 | "eslint-plugin-vue": "^9.6.0", |
24 | "http-server": "^14.1.1", | ||
23 | "prettier": "^2.7.1", | 25 | "prettier": "^2.7.1", |
24 | "sass": "^1.55.0", | 26 | "sass": "^1.55.0", |
25 | "vite": "^3.2.1", | 27 | "vite": "^3.2.1", |