forked from fluidd-core/fluidd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.67 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.67 KB
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
{
"name": "fluidd",
"version": "1.6.0",
"private": true,
"description": "fluidd, a klipper web client.",
"author": {
"name": "Craig Bassett"
},
"scripts": {
"serve": "vue-cli-service serve",
"serve.prod": "serve -s ./dist",
"build": "vue-cli-service build && npm run build.zip",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"inspect": "vue-cli-service inspect",
"release": "standard-version",
"start": "vue-cli-service serve",
"test": "echo \"Error: no test specified\" && exit 1",
"release.patch": "npm run release -- --release-as patch",
"release.minor": "npm run release -- --release-as minor",
"release.major": "npm run release -- --release-as major",
"release.rc": "npm run release -- --prerelease rc",
"build.zip": "cd ./dist && zip -r fluidd.zip ./ && cd ..",
"deploy.host": "npm run copy.host.config && potato -s dist -u -b app.fluidd.xyz",
"copy.host.config": "shx cp -f ./server/config.json ./dist/config.json"
},
"main": "index.js",
"dependencies": {
"@cadriel/vue-plotly": "github:cadriel/vue-plotly",
"@ctrl/tinycolor": "^3.3.1",
"@fontsource/roboto": "^4.1.0",
"axios": "^0.21.1",
"chart.js": "^2.9.4",
"chartjs-plugin-colorschemes": "^0.4.0",
"core-js": "^3.8.1",
"dayjs": "^1.9.8",
"lodash-es": "^4.17.20",
"prismjs": "^1.22.0",
"register-service-worker": "^1.7.2",
"semver": "^7.3.4",
"vue": "^2.6.11",
"vue-chartjs": "^3.5.1",
"vue-class-component": "^7.2.3",
"vue-debounce-decorator": "^1.0.1",
"vue-headful": "^2.1.0",
"vue-meta": "^2.4.0",
"vue-prism-editor": "^1.2.2",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.2.0",
"vuedraggable": "^2.24.3",
"vuetify": "^2.4.0",
"vuex": "^3.6.0"
},
"devDependencies": {
"@0x4447/potato": "^2.4.7",
"@mdi/js": "^5.8.55",
"@types/chai": "^4.2.14",
"@types/lodash-es": "^4.17.4",
"@types/mocha": "^5.2.4",
"@types/plotly.js": "^1.54.6",
"@types/prismjs": "^1.16.2",
"@types/semver": "^7.3.4",
"@types/workbox-window": "^4.3.3",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-e2e-cypress": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-pwa": "^4.5.8",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-mocha": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.0.3",
"chai": "^4.1.2",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^6.2.2",
"fibers": "^5.0.0",
"generate-file-webpack-plugin": "^1.0.1",
"sass": "^1.32.0",
"sass-loader": "^10.1.0",
"serve": "^11.3.2",
"shx": "^0.3.3",
"standard-version": "^9.1.0",
"typescript": "~3.9.3",
"vue-cli-plugin-vuetify": "^2.0.9",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.3.0",
"vuex-class": "^0.3.2",
"webpack-bundle-analyzer": "^4.3.0"
},
"_id": "fluidd@0.0.3",
"bugs": {
"url": "https://github.com/cadriel/fluidd/issues"
},
"homepage": "https://github.com/cadriel/fluidd#readme",
"keywords": [
"klipper"
],
"license": "MIT",
"readme": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/cadriel/fluidd.git"
}
}