Skip to content

Commit 4061dd0

Browse files
committed
- Missed a few files that needed to be .jsx
- seperated out package locks per package
1 parent 35ad74f commit 4061dd0

19 files changed

+34466
-23192
lines changed

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

.npmrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
shared-workspace-lockfile=false
2+
public-hoist-pattern[]=*eslint*
3+
public-hoist-pattern[]=*prettier*
4+
public-hoist-pattern[]=@types*

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@
1111
],
1212
"scripts": {
1313
"preinstall": "npx only-allow pnpm",
14-
"dev": "kill-port 3000 5173 && pnpm --filter \"./packages/**\" dev",
15-
"build": "pnpm --filter \"./packages/**\" build",
14+
"dev": "kill-port 3000 5173 && pnpm --filter './packages/**' dev",
15+
"build": "pnpm clean && pnpm -r --filter \"./packages/**\" build",
1616
"start": "kill-port 3000 && run-script-os",
1717
"start:windows": "cd packages/server/bin && run start",
1818
"start:default": "cd packages/server/bin && ./run start",
19-
"clean": "pnpm exec -ws -- rimraf dist build",
19+
"clean": " pnpm --filter './packages/**' clean",
20+
"nuke": " pnpm --filter './packages/**' nuke && rimraf node_modules",
2021
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
2122
"lint": "eslint \"**/*.{js,jsx,ts,tsx,json,md}\"",
2223
"lint-fix": "pnpm lint --fix",
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from '.'

packages/components/package.json

+19-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
"scripts": {
88
"preinstall": "npx only-allow pnpm",
99
"build": "tsc && gulp",
10-
"dev": "tsc --watch"
10+
"dev": "tsc --watch",
11+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
12+
"clean": "rimraf dist",
13+
"nuke": "rimraf dist node_modules"
1114
},
1215
"keywords": [],
1316
"homepage": "https://flowiseai.com",
@@ -40,6 +43,8 @@
4043
"cheerio": "^1.0.0-rc.12",
4144
"chromadb": "^1.5.11",
4245
"cohere-ai": "^6.2.0",
46+
"crypto-js": "^4.1.1",
47+
"css-what": "^6.1.0",
4348
"d3-dsv": "2",
4449
"dotenv": "^16.0.0",
4550
"express": "^4.17.3",
@@ -49,11 +54,13 @@
4954
"graphql": "^16.6.0",
5055
"html-to-text": "^9.0.5",
5156
"ioredis": "^5.3.2",
57+
"jsdom": "^22.1.0",
5258
"langchain": "^0.0.165",
5359
"langfuse-langchain": "^1.0.31",
5460
"langsmith": "^0.0.32",
5561
"linkifyjs": "^4.1.1",
5662
"llmonitor": "^0.5.5",
63+
"lodash": "^4.17.21",
5764
"mammoth": "^1.5.1",
5865
"moment": "^2.29.3",
5966
"mongodb": "^6.2.0",
@@ -71,23 +78,33 @@
7178
"pyodide": ">=0.21.0-alpha.2",
7279
"redis": "^4.6.7",
7380
"replicate": "^0.12.3",
81+
"socket.io": "^4.6.1",
7482
"srt-parser-2": "^1.2.3",
83+
"typeorm": "^0.3.6",
7584
"vm2": "^3.9.19",
7685
"weaviate-ts-client": "^1.1.0",
86+
"winston": "^3.9.0",
7787
"ws": "^8.9.0",
88+
"zod": "^3.22.4",
7889
"zod-to-json-schema": "^3.21.4"
7990
},
8091
"devDependencies": {
92+
"@swc/core": "^1.3.99",
93+
"@types/crypto-js": "^4.1.1",
8194
"@types/gulp": "4.0.9",
95+
"@types/lodash": "^4.14.202",
8296
"@types/node-fetch": "2.6.2",
8397
"@types/object-hash": "^3.0.2",
8498
"@types/pg": "^8.10.2",
8599
"@types/ws": "^8.5.3",
100+
"babel-register": "^6.26.0",
86101
"eslint-plugin-markdown": "^3.0.1",
87102
"eslint-plugin-react": "^7.33.2",
88103
"eslint-plugin-react-hooks": "^4.6.0",
89-
"babel-register": "^6.26.0",
90104
"gulp": "^4.0.2",
105+
"rimraf": "^5.0.5",
106+
"tslib": "^2.6.2",
107+
"tsup": "^8.0.1",
91108
"typescript": "^4.8.4"
92109
}
93110
}

0 commit comments

Comments
 (0)