-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.26 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
{
"name": "cumulocity-node-red",
"private": true,
"version": "2.4.0",
"author": "Tristan Bastian",
"description": "Node-RED integration into Cumulocity. With the Node-RED instance running as a microservice inside of Cumulocity.",
"scripts": {
"build:release": "yarn build:docker && yarn workspace cumulocity-node-red-ui build:release",
"build:docker": "docker build --target prod -t node-red-ms . && docker save node-red-ms -o image.tar && zip ./node-red cumulocity.json image.tar",
"build": "yarn workspace node-red-c8y-storage-plugin build",
"build:ui": "yarn workspace cumulocity-node-red-ui build",
"start": "node index.js --userDir ./",
"dev": "yarn build && yarn start"
},
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"bugs": {
"url": "https://github.com/SoftwareAG/cumulocity-node-red/issues"
},
"homepage": "https://github.com/SoftwareAG/cumulocity-node-red#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareAG/cumulocity-node-red.git"
},
"workspaces": [
"node-red-c8y-storage-plugin",
"node-red-contrib-c8y-client",
"cumulocity-node-red-ui"
],
"dependencies": {
"dotenv": "16.4.5",
"node-red": "4.0.5",
"node-red-dashboard": "~3.6.5"
}
}