forked from FlowFuse/flowfuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 5.69 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
{
"name": "@flowforge/flowforge",
"version": "1.1.0",
"description": "An open source low-code development platform",
"scripts": {
"start": "node forge/app.js",
"build": "webpack -c ./config/webpack.config.js",
"serve": "npm-run-all --parallel build-watch start-watch",
"serve:test-env": "node ./test/e2e/frontend/test_environment.js",
"start-watch": "cross-env NODE_ENV=development nodemon -w forge -w ee/forge -i forge/containers/localfs_root forge/app.js",
"build-watch": "webpack --mode=development -c ./config/webpack.config.js --watch",
"docs": "jsdoc -c ./config/jsdoc.json",
"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 5000",
"test:unit:frontend": "vitest run --config ./config/vitest.config.ts test/unit/frontend/**/*.spec.js",
"test:unit:frontend-watch": "vitest --config ./config/vitest.config.ts test/unit/frontend/**/*.spec.js",
"test:system": "mocha 'test/system/**/*_spec.js' --timeout 5000",
"cy:web-server": "node ./test/e2e/frontend/test_environment",
"cy:run": "cypress run --config-file ./config/cypress.config.js",
"cy:open": "cypress open --config-file ./config/cypress.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",
"cover:unit:frontend": "vitest --config ./config/vitest.config.ts run --coverage",
"cover:system": "nyc --silent --no-clean npm run test:system",
"cover:report": "nyc report --reporter=text --reporter html --report-dir './coverage/forge'",
"install-stack": "node scripts/install-stack.js --"
},
"bin": {
"flowforge": "./forge/app.js",
"ff-install-stack": "./scripts/install-stack.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flowforge/flowforge.git"
},
"author": {
"name": "FlowFlow Inc."
},
"license": "SEE LICENSE IN ./LICENSE",
"bugs": {
"url": "https://github.com/flowforge/flowforge/issues"
},
"homepage": "https://github.com/flowforge/flowforge#readme",
"dependencies": {
"@aws-sdk/client-ses": "^3.100.0",
"@aws-sdk/credential-provider-node": "^3.100.0",
"@fastify/cookie": "^8.3.0",
"@fastify/csrf-protection": "^6.0.0",
"@fastify/helmet": "^10.0.2",
"@fastify/static": "^6.5.0",
"@flowforge/forge-ui-components": "^0.5.0",
"@flowforge/localfs": "^1.1.0",
"@headlessui/vue": "1.7.3",
"@heroicons/vue": "1.0.6",
"axios": "^1.2.0",
"bcrypt": "^5.1.0",
"cronosjs": "^1.7.1",
"fastify": "^4.9.2",
"fastify-plugin": "^4.3.0",
"handlebars": "^4.7.7",
"hashids": "^2.2.10",
"jsonwebtoken": "^8.5.1",
"lottie-web-vue": "^2.0.6",
"lru-cache": "^7.14.0",
"marked": "^4.1.1",
"moment": "^2.29.4",
"mqtt": "^4.3.7",
"nodemailer": "^6.8.0",
"pino-pretty": "^9.1.1",
"semver": "^7.3.8",
"sequelize": "^6.25.2",
"sqlite3": "^5.1.2",
"stripe": "^8.222.0",
"uuid": "^9.0.0",
"vue": "^3.2.41",
"vue-router": "^4.1.5",
"vuex": "^4.1.0",
"yaml": "^2.1.3"
},
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/preset-env": "^7.16.10",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/test-utils": "^2.0.0-rc.21",
"autoprefixer": "^10.4.12",
"babel-loader": "^9.1.0",
"c8": "^7.12.0",
"clean-jsdoc-theme": "^3.3.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.2",
"cypress": "^11.2.0",
"dotenv-webpack": "^7.1.0",
"eslint": "^8.25.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jsdoc": "^3.6.11",
"jsdom": "^20.0.1",
"mini-css-extract-plugin": "^2.5.3",
"mocha": "^10.1.0",
"mocha-cli": "^1.0.1",
"node-sass": "^8.0.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"pg": "^8.7.3",
"postcss": "^8.4.18",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^6.7.0",
"promptly": "^3.2.0",
"sass-loader": "^13.2.0",
"should": "^13.2.3",
"should-sinon": "^0.0.6",
"sinon": "^14.0.2",
"start-server-and-test": "^1.14.0",
"style-loader": "^3.3.1",
"tailwindcss": "^2.2.19",
"vitest": "^0.25.3",
"vue-loader": "^16.8.3",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^3.11.3"
},
"engines": {
"node": ">=16.x"
}
}