forked from Duet3D/DuetWebControl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.28 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
{
"name": "duetwebcontrol",
"version": "3.4.4",
"repository": "github:chrishamm/DuetWebControl",
"homepage": "https://forum.duet3d.com/category/27/duet-web-control",
"license": "GPL-3.0",
"author": "Christian Hammacher <christian@duet3d.com> (https://www.duet3d.com)",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build-plugin": "node scripts/build-plugin.js",
"report": "vue-cli-service build --report",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@babylonjs/core": "^5.8.0",
"@babylonjs/gui": "^5.8.0",
"@babylonjs/materials": "^5.8.0",
"@sindarius/gcodeviewer": "^3.1.2",
"chart.js": "^2.9.4",
"chartjs-adapter-date-fns": "^1.0.0",
"compare-versions": "^3.6.0",
"date-fns": "^2.17.0",
"file-saver": "^2.0.5",
"jszip": "^3.6.0",
"piecon": "^0.5.0",
"qoijs": "^1.0.0",
"register-service-worker": "^1.7.2",
"simple-keyboard": "^3.3.13",
"turbo-crc32": "^1.0.1",
"vue": "^2.6.12",
"vue-codemirror": "^4.0.6",
"vue-i18n": "^8.22.4",
"vue-router": "^3.5.1",
"vuetify": "^2.4.4",
"vuex": "^3.6.2"
},
"devDependencies": {
"@mdi/font": "^6.4.95",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-eslint": "^4.5.15",
"@vue/cli-plugin-pwa": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"archiver": "^5.3.0",
"babel-eslint": "^10.1.0",
"babel-plugin-prismjs": "^2.0.1",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"compression-webpack-plugin": "^5.0.2",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"sass": "~1.32",
"sass-loader": "^8.0.2",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.1",
"vue-cli-plugin-vuetify": "^2.1.0",
"vue-template-compiler": "^2.6.12",
"vuetify-loader": "^1.7.2",
"zip-webpack-plugin": "^4.0.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off",
"no-mixed-spaces-and-tabs": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"iOS >= 9"
]
}