forked from tum-esi/wade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 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
{
"name": "w-ade",
"description": "W-ADE: Web of Things API Development Environment",
"author": "TUM-ESI <[email protected]> (http://www.ei.tum.de/esi)",
"contributors": [
{
"name": "Verena Eileen Schlott",
"email": "[email protected]"
},
{
"name": "Adrian Kast"
},
{
"name": "Ege Korkan",
"email": "[email protected]"
},
{
"name": "Miguel Romero Karam",
"email": "[email protected]"
},
{
"name": "Fady Salama",
"email": "[email protected]"
}
],
"version": "1.0.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "node postinstall.js & electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"electron:generate-icons": "electron-icon-builder --input=./public/icon.png --output=build --flatten",
"ui": "vue ui"
},
"main": "background.js",
"dependencies": {
"@node-wot/binding-http": "^0.7.1",
"@node-wot/binding-mqtt": "^0.7.1",
"@node-wot/binding-coap": "^0.7.1",
"@node-wot/binding-websockets": "^0.7.1",
"@node-wot/core": "^0.7.4",
"coap": "^0.23.1",
"core-js": "^2.6.5",
"cors-anywhere": "^0.4.3",
"electron-json-storage": "^4.1.8",
"js-beautify": "^1.13.0",
"js-combinatorics": "^0.6.1",
"jsonld-streaming-parser": "^2.2.0",
"mermaid": "^8.7.0",
"monaco-editor": "^0.21.2",
"monaco-editor-webpack-plugin": "^2.0.0",
"n3": "^1.6.3",
"npm": "^6.14.5",
"rdfxml-streaming-parser": "^1.4.0",
"vue": "^2.6.10",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.1.3",
"vuex": "3.1.1",
"vuex-electron": "^1.0.3",
"wot-typescript-definitions": "^0.7.1-SNAPSHOT.1"
},
"devDependencies": {
"@types/electron-devtools-installer": "^2.2.0",
"@types/js-beautify": "^1.13.1",
"@types/js-combinatorics": "^0.5.32",
"@types/mermaid": "^8.2.1",
"@types/n3": "^1.4.4",
"@types/node": "^12.12.11",
"@types/request": "^2.48.5",
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-typescript": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"electron": "^9.1.0",
"electron-devtools-installer": "^3.1.1",
"electron-icon-builder": "^1.0.2",
"less": "^3.10.3",
"less-loader": "^4.1.0",
"tslint": "^5.20.1",
"typescript": "^3.7.2",
"vue-cli-plugin-electron-builder": "^1.4.0",
"vue-template-compiler": "^2.6.10"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}