-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
99 lines (99 loc) · 2.8 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
{
"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": "2.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-coap": "~0.8.6",
"@node-wot/binding-http": "~0.8.6",
"@node-wot/binding-mqtt": "~0.8.6",
"@node-wot/binding-websockets": "~0.8.6",
"@node-wot/core": "~0.8.6",
"ajv": "^8.11.0",
"core-js": "^3.8.3",
"cors-anywhere": "^0.4.4",
"electron-builder": "^23.0.2",
"electron-json-storage": "^4.5.0",
"js-beautify": "^1.14.4",
"js-combinatorics": "^0.6.1",
"json-schema-faker": "0.5.0-rcv.46",
"jsonld-streaming-parser": "^2.4.3",
"mermaid": "9.1.2",
"monaco-editor": "^0.33.0",
"monaco-editor-webpack-plugin": "^7.0.1",
"n3": "^1.6.3",
"rdfxml-streaming-parser": "^1.5.0",
"ts-loader": "~8.2.0",
"vue": "^2.6.14",
"vue-router": "^3.5.1",
"vuex": "^3.6.2",
"vuex-electron-store": "^1.4.26",
"wot-testbench": "^1.1.2"
},
"devDependencies": {
"@types/electron-devtools-installer": "^2.2.0",
"@types/js-beautify": "^1.13.3",
"@types/js-combinatorics": "^0.5.32",
"@types/mermaid": "8.2.2",
"@types/n3": "1.4.4",
"@types/node": "^18.0.0",
"@types/request": "^2.48.8",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-plugin-vuex": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"electron": "^18.3.7",
"electron-devtools-installer": "^3.1.0",
"less": "^4.0.0",
"less-loader": "^8.0.0",
"tslint": "^6.1.3",
"typescript": "~4.5.5",
"vue-cli-plugin-electron-builder": "~2.1.1",
"vue-template-compiler": "^2.6.14"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}