forked from FlowFuse/node-red-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 4.47 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@flowfuse/node-red-dashboard",
"version": "1.1.0",
"description": "Dashboard 2.0 - A collection of Node-RED nodes that provide functionality to build your own UI applications (inc. forms, buttons, charts).",
"keywords": [
"node-red"
],
"homepage": "https://dashboard.flowfuse.com",
"repository": {
"type": "git",
"url": "https://github.com/FlowFuse/node-red-dashboard.git"
},
"license": "Apache-2.0",
"author": {
"name": "Joe Pavitt",
"url": "https://github.com/joepavitt"
},
"contributors": [
{
"name": "Pez Cuckow",
"url": "https://github.com/pezmc"
}
],
"files": [
"dist/*",
"nodes/*"
],
"scripts": {
"build": "vite build",
"build:dev": "NODE_ENV=development npm run build",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:server": "node-red -u ./cypress/fixtures/user-dir/ -p 1881",
"dev": "NODE_ENV=development vite build --watch",
"dev:prod": "vite build --watch",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"lint": "npm run lint:js && npm run lint:package",
"lint:fix": "npm run lint:js:fix && npm run lint:package:fix",
"lint:js": "eslint --ext .js,.vue,.cjs,.mjs .",
"lint:js:fix": "yarn lint:js --fix",
"lint:package": "sort-package-json --check 'package.json'",
"lint:package:fix": "sort-package-json 'package.json'",
"test": "mocha \"test/**/*.spec.js\"",
"test:debug": "mocha --inspect=9226 \"test/**/*.spec.js\""
},
"dependencies": {
"acorn": "^8.11.2",
"chartjs-adapter-luxon": "^1.3.1",
"core-js": "^3.32.0",
"d3": "^7.8.5",
"escodegen": "^2.1.0",
"express": "^4.18.2",
"socket.io": "^4.7.1",
"vue": "^3.4.5"
},
"devDependencies": {
"@mdi/font": "~6.9.96",
"@unhead/vue": "^1.7.4",
"@vitejs/plugin-vue": "^4.5.0",
"chart.js": "^4.4.0",
"cypress": "^13.6.2",
"dompurify": "^3.0.5",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.18.1",
"eslint-plugin-vuetify": "^2.1.0",
"glob": "^10.3.4",
"highlight.js": "^11.8.0",
"luxon": "^3.4.3",
"marked": "^4.3.0",
"marked-highlight": "^2.0.6",
"medium-zoom": "^1.0.8",
"mermaid": "^10.4.0",
"mocha": "^10.2.0",
"node-red": "^3.1.0",
"node-red-node-test-helper": "^0.3.3",
"should": "^13.2.3",
"should-sinon": "^0.0.6",
"sinon": "^15.2.0",
"socket.io-client": "^4.7.2",
"sort-package-json": "^2.6.0",
"vite": "^5.0.0",
"vitepress": "^1.0.0-rc.40",
"vue-router": "^4.2.4",
"vuetify": "^3.4.10",
"vuex": "^4.1.0"
},
"engines": {
"node": ">=14"
},
"node-red": {
"version": ">=3.0.0",
"nodes": {
"ui-base": "nodes/config/ui_base.js",
"ui-page": "nodes/config/ui_page.js",
"ui-group": "nodes/config/ui_group.js",
"ui-theme": "nodes/config/ui_theme.js",
"ui-form": "nodes/widgets/ui_form.js",
"ui-text-input": "nodes/widgets/ui_text_input.js",
"ui-button": "nodes/widgets/ui_button.js",
"ui-dropdown": "nodes/widgets/ui_dropdown.js",
"ui-radio-group": "nodes/widgets/ui_radio_group.js",
"ui-slider": "nodes/widgets/ui_slider.js",
"ui-switch": "nodes/widgets/ui_switch.js",
"ui-text": "nodes/widgets/ui_text.js",
"ui-table": "nodes/widgets/ui_table.js",
"ui-chart": "nodes/widgets/ui_chart.js",
"ui-gauge": "nodes/widgets/ui_gauge.js",
"ui-notification": "nodes/widgets/ui_notification.js",
"ui-markdown": "nodes/widgets/ui_markdown.js",
"ui-template": "nodes/widgets/ui_template.js",
"ui-event": "nodes/widgets/ui_event.js",
"ui-control": "nodes/widgets/ui_control.js"
}
},
"overrides": {
"node-red-node-test-helper": {
"semver": "^7.5.4"
}
}
}