- Updated .js files to .jsx on frontend.

- Removed Yarn dependency and replaced with PNPM
- Changed Frontend to render via vite
This commit is contained in:
Greg L
2023-11-23 08:17:06 -05:00
parent 34702a9ba2
commit 0f09faa1bc
120 changed files with 25959 additions and 385 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"ignore": ["**/*.spec.ts", ".git", "node_modules"],
"watch": ["commands", "index.ts", "src", "../components/nodes", "../components/src"],
"exec": "yarn oclif-dev",
"exec": "./bin/dev start",
"ext": "ts"
}
+10 -5
View File
@@ -24,12 +24,12 @@
"start": "run-script-os",
"start:windows": "cd bin && run start",
"start:default": "cd bin && ./run start",
"dev": "concurrently \"yarn watch\" \"nodemon\"",
"dev": "nodemon",
"oclif-dev": "run-script-os",
"oclif-dev:windows": "cd bin && dev start",
"oclif-dev:default": "cd bin && ./dev start",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "yarn build && oclif manifest && oclif readme",
"prepack": "pnpm build && oclif manifest && oclif readme",
"typeorm": "typeorm-ts-node-commonjs",
"watch": "tsc --watch",
"version": "oclif readme && git add README.md"
@@ -46,6 +46,8 @@
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@oclif/core": "^1.13.10",
"@types/lodash": "^4.14.202",
"@types/uuid": "^9.0.7",
"async-mutex": "^0.4.0",
"axios": "^0.27.2",
"cors": "^2.8.5",
@@ -54,11 +56,14 @@
"express": "^4.17.3",
"express-basic-auth": "^1.2.1",
"express-rate-limit": "^6.9.0",
"flowise-components": "*",
"flowise-ui": "*",
"flowise-components": "workspace:^",
"flowise-ui": "workspace:^",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"moment-timezone": "^0.5.34",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"openai": "^4.20.0",
"pg": "^8.11.1",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.6.1",
@@ -72,7 +77,7 @@
"@types/crypto-js": "^4.1.1",
"@types/multer": "^1.4.7",
"concurrently": "^7.1.0",
"nodemon": "^2.0.15",
"nodemon": "^2.0.22",
"oclif": "^3",
"run-script-os": "^1.1.6",
"shx": "^0.3.3",