-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
122 lines (122 loc) · 2.77 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
122
{
"name": "shif",
"title": "Shif",
"description": "Smarthome Interface",
"version": "1.0.0",
"license": "LGPLv3",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.2",
"@homegear/homegearws": "^1.0.12",
"@jaames/iro": "^4.5.3",
"jquery": "^3.5.1",
"sortablejs": "^1.13.0",
"vue": "^2.6.12",
"vue-router": "^3.5.1",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.1",
"@babel/preset-env": "7.13.5",
"acorn": "^8.0.5",
"csslint": "^1.0.5",
"eslint": "^7.20.0",
"eslint-plugin-vue": "^7.6.0",
"gulp": "^4.0.2"
},
"unusedDevDependencies": {
"@babel/node": "^7.10.4",
"del": "^5.1.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^6.0.0",
"gulp-minify": "^3.1.0",
"gulp-rename": "^1.4.0",
"gulp-uglify": "^3.0.2",
"node-sass": "^4.14.1"
},
"unusedDependencies": {
"plotly.js": "^1.46.0",
"jsoneditor": "^5.34.0",
"push.js": "^1.0.9",
"slick-carousel": "^1.8.1",
"bootstrap": "^4.3.1",
"c3": "^0.6.14",
"d3": "^5.9.2",
"notie": "^4.3.1",
"jquery-chained": "^2.0.0-beta.2",
"jquery-touchswipe": "^1.6.19",
"paho-mqtt": "^1.1.0",
"patternlock": "1.0.1"
},
"scripts": {
"build": "php admin/admin.php generateExtensions && npm run babel",
"buildDev": "php admin/admin.php generateExtensions dev && npm run babel",
"buildProd": "php admin/admin.php generateExtensions prod && npm run babel",
"babel": "npx babel dist/script.js --out-file dist/script.min.js",
"watch": "npx gulp watcher",
"lint": "npx eslint admin/master/**/*.js"
},
"browserslist": [
"since 2016",
"last 4 version",
"> 1%",
"maintained node versions",
"not dead",
"not ie < 11"
],
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"jquery": true
},
"plugins": [
"vue"
],
"extends": [
"eslint:recommended",
"plugin:vue/essential"
],
"parserOptions": {
"sourceType": "script",
"ecmaVersion": 2015
},
"rules": {
"linebreak-style": 0,
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true
}
],
"semi": [
"error",
"always"
],
"indent": "off",
"no-console": "off",
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"no-prototype-builtins": "off"
},
"globals": {
"Vue": true,
"VueRouter": true,
"interfaceData": true,
"iro": true
}
}
}