-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
181 lines (181 loc) · 7.76 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "@flowfuse/flowfuse",
"version": "2.12.0",
"description": "An open source low-code development platform",
"homepage": "https://flowfuse.com",
"bugs": {
"url": "https://github.com/FlowFuse/flowfuse/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlowFuse/flowfuse.git"
},
"license": "SEE LICENSE IN ./LICENSE",
"author": {
"name": "FlowFuse Inc."
},
"bin": {
"ff-install-stack": "./scripts/install-stack.js",
"flowforge": "./forge/app.js",
"flowfuse": "./forge/app.js"
},
"scripts": {
"start": "node forge/app.js",
"repl": "node forge/app.js --repl",
"build": "webpack --mode=production -c ./config/webpack.config.js",
"serve": "npm-run-all --parallel build-watch start-watch",
"serve-repl": "npm-run-all --parallel build-watch start-watch-repl",
"start-watch": "cross-env NODE_ENV=development nodemon -w forge -w ee/forge -i forge/containers/localfs_root forge/app.js",
"start-watch-repl": "cross-env NODE_ENV=development nodemon -w forge -w ee/forge -i forge/containers/localfs_root forge/app.js --repl",
"build-watch": "webpack --mode=development -c ./config/webpack.config.js --watch",
"lint": "eslint -c .eslintrc \"forge/**/*.js\" \"frontend/**/*.js\" \"frontend/**/*.vue\" \"test/**/*.js\" --ignore-pattern \"frontend/dist/**\"",
"lint:fix": "eslint -c .eslintrc \"forge/**/*.js\" \"frontend/**/*.js\" \"frontend/**/*.vue\" \"test/**/*.js\" --ignore-pattern \"frontend/dist/**\" --fix",
"test": "npm-run-all --sequential lint test:unit test:system",
"test:unit": "npm-run-all --sequential test:unit:forge test:unit:frontend",
"test:unit:forge": "mocha 'test/unit/forge/**/*_spec.js' --timeout 10000 --node-option=unhandled-rejections=strict",
"test:unit:frontend": "vitest run --config ./config/vitest.config.ts",
"test:docs": "node test/e2e/docs/valid-links.js ./docs",
"test:system": "mocha 'test/system/**/*_spec.js' --timeout 10000 --node-option=unhandled-rejections=strict",
"cy:web-server": "npm-run-all --parallel cy:web-server:os cy:web-server:ee",
"cy:web-server:os": "node ./test/e2e/frontend/test_environment_os",
"cy:web-server:ee": "node ./test/e2e/frontend/test_environment_ee",
"cy:run": "npm-run-all --parallel cy:run:os cy:run:ee",
"cy:run:os": "cypress run --config-file ./config/cypress-os.config.js",
"cy:run:ee": "cypress run --config-file ./config/cypress-ee.config.js",
"cy:open:os": "cypress open --config-file ./config/cypress-os.config.js",
"cy:open:ee": "cypress open --config-file ./config/cypress-ee.config.js",
"cover": "npm-run-all --sequential cover:unit cover:system cover:report",
"cover:unit": "npm-run-all --sequential cover:unit:forge cover:unit:frontend",
"cover:unit:forge": "nyc --silent npm run test:unit:forge && nyc report --reporter=json --report-dir ./coverage/reports/forge/ && mv ./coverage/reports/forge/coverage-final.json ./coverage/reports/forge-coverage.json",
"cover:unit:frontend": "vitest --config ./config/vitest.config.ts run --coverage && mv ./coverage/reports/frontend/coverage-final.json ./coverage/reports/frontend-coverage.json",
"cover:system": "nyc --silent npm run test:system && nyc report --reporter=json --report-dir ./coverage/reports/system/ && mv ./coverage/reports/system/coverage-final.json ./coverage/reports/system-coverage.json",
"cover:report": "nyc report --reporter=html --reporter=json -t './coverage/reports'",
"install-stack": "node scripts/install-stack.js --"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.352.0",
"@aws-sdk/credential-provider-node": "^3.352.0",
"@fastify/cookie": "^9.1.0",
"@fastify/csrf-protection": "^6.3.0",
"@fastify/formbody": "^7.4.0",
"@fastify/helmet": "^11.1.1",
"@fastify/multipart": "^8.3.0",
"@fastify/passport": "^2.3.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/routes": "^5.1.0",
"@fastify/static": "^7.0.1",
"@fastify/swagger": "^8.10.1",
"@fastify/swagger-ui": "^3.0.0",
"@fastify/websocket": "^8.1.0",
"@flowfuse/driver-localfs": "^2.12.0",
"@flowfuse/flow-renderer": "^0.4.1",
"@headlessui/vue": "1.7.19",
"@heroicons/vue": "1.0.6",
"@immobiliarelabs/fastify-sentry": "^8.0.0",
"@levminer/speakeasy": "^1.4.2",
"@node-red/util": "^4.0.2",
"@node-saml/passport-saml": "^4.0.4",
"@sentry/node": "^7.73.0",
"@sentry/profiling-node": "^1.2.1",
"@sentry/vue": "^7.91.0",
"@sentry/webpack-plugin": "^2.7.1",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"cronosjs": "^1.7.1",
"dotenv": "^16.3.1",
"fastify": "^4.25.2",
"fastify-metrics": "^11.0.0",
"fastify-plugin": "^4.5.1",
"handlebars": "^4.7.7",
"hashids": "^2.3.0",
"jsonwebtoken": "^9.0.0",
"ldapts": "^7.0.12",
"lottie-web-vue": "^2.0.7",
"marked": "^12.0.0",
"mqtt": "^5.1.1",
"mqtt-match": "^3.0.0",
"nodemailer": "^6.9.3",
"pg": "^8.11.3",
"pino": "^8.15.1",
"pino-pretty": "^10.0.0",
"posthog-node": "^4.2.0",
"qrcode": "^1.5.3",
"random-words": "~2.0.0",
"semver": "~7.6.0",
"sequelize": "^6.33.0",
"sqlite3": "^5.1.6",
"stripe": "^8.222.0",
"uuid": "^9.0.0",
"vue": "^3.4.5",
"vue-router": "^4.2.5",
"vue-shepherd": "^3.0.0",
"vuex": "^4.1.0",
"yaml": "^2.3.1",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@vitejs/plugin-vue": "^5.0.2",
"@vitest/coverage-istanbul": "^1.1.0",
"@vue/test-utils": "^2.4.3",
"autoprefixer": "^10.4.15",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"cypress": "^13.2.0",
"cypress-mailpit": "^0.0.4",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.48.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.19.2",
"file-loader": "^6.2.0",
"html-link-extractor": "^1.0.5",
"html-webpack-plugin": "^5.5.3",
"jsdom": "^25.0.1",
"mini-css-extract-plugin": "^2.7.6",
"mocha": "^10.2.0",
"mocha-cli": "^1.0.1",
"mockdate": "^3.0.5",
"node-sass": "^9.0.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"postcss": "^8.4.29",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.1.3",
"promptly": "^3.2.0",
"sass-loader": "^16.0.2",
"should": "^13.2.3",
"should-sinon": "^0.0.6",
"sinon": "^19.0.2",
"style-loader": "^3.3.3",
"tailwindcss": "^2.2.19",
"vitest": "^1.1.0",
"vue-loader": "^17.4.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"ws": "^8.14.0"
},
"engines": {
"node": ">=18.x"
},
"keywords": [
"low-code-platform",
"low-code-development",
"low-code-development-platform",
"visual-programming",
"flow-based-programming",
"no-code",
"low-code",
"node-red"
]
}