-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·51 lines (51 loc) · 1.77 KB
/
package.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.77 KB
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
{
"name": "node-red-contrib-webapp",
"description": "nodes to build a webapp frontend",
"version": "0.1.0",
"license": "MIT",
"author": "Oliver Charlet <oliver.charlet@clarities.de>",
"repository": {
"type": "git",
"url": "https://github.com/ollixx/node-red-contrib-webapp.git"
},
"keywords": [
"node-red",
"gui",
"frontend",
"webapp"
],
"node-red": {
"nodes": {
"webapp": "nodes/webapp.js",
"guinode": "nodes/guinode.js"
}
},
"devDependencies": {
"copyfiles": "^2.4.0",
"mocha": "^7.0.1",
"node-red": "^1.2.2",
"node-red-node-test-helper": "^0.2.3"
},
"scripts": {
"test": "mocha test/*_spec.js",
"postinstall": "npm run pi:1 && npm run pi:2 && npm run pi:3 && npm run pi:4 && npm run pi:5 && npm run pi:6",
"pi:1": "copyfiles -f node_modules/reconnecting-websocket/dist/reconnecting-websocket-cjs.js dist/js/",
"pi:2": "copyfiles -f node_modules/vue/dist/vue.min.js dist/js/",
"pi:3": "copyfiles -f node_modules/vue-material/dist/vue-material.min.js dist/js/",
"pi:4": "copyfiles -f node_modules/vue-material/dist/vue-material.min.css dist/css/",
"pi:5": "copyfiles -f node_modules/vue-material/dist/theme/*.css dist/css/",
"pi:6": "copyfiles -f node_modules/jsonata/jsonata.min.js dist/js/"
},
"dependencies": {
"jsonata": "^1.8.3",
"node-red-contrib-theme-midnight-red": "^1.0.29",
"reconnecting-websocket": "^4.4.0",
"v-json-tree": "^3.0.4",
"vue": "^2.6.14",
"vue-material": "1.0.0-beta-15",
"vue-router": "^3.5.2",
"vuex": "^3.6.2",
"winston": "^3.3.3",
"ws": "^6.2.1"
}
}