-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "rematic-webapp",
"version": "0.7.0",
"description": "rematic Web App - REmote Web Frontend for HomeMATIC",
"main": "none",
"scripts": {
"staging": "cd webapp && npm run staging && cd ..",
"build": "cd webapp && npm run build && cd .. && npm pack",
"pack": "npm pack"
},
"author": "Christian Rendl <[email protected]>",
"license": "Apache-2.0",
"node-red": {
"nodes": {
"rematic-webapp-server": "nodes/rematic-webapp-server.js",
"rematic-webapp": "nodes/rematic-webapp.js",
"rematic-uielement": "nodes/rematic-uielement.js",
"rematic-uigroup": "nodes/rematic-uigroup.js",
"rematic-uipage": "nodes/rematic-uipage.js"
}
},
"dependencies": {
"express": "^4.17.1",
"http": "0.0.1-security",
"https": "^1.0.0",
"serve-static": "1.13.2",
"socket.io": "2.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"xo": "^0.24.0"
},
"xo": {
"space": 4,
"globals": [
"window",
"document",
"location",
"customElements"
],
"rules": {
"import/extensions": 0,
"import/no-unassigned-import": 0,
"no-unused-vars": 0
}
}
}