mirror of
https://github.com/ianarawjo/ChainForge.git
synced 2025-03-14 16:26:45 +00:00
* Use Mantine Textarea controlled for Textfields node, instead of textarea * Added Tabular data node * TabularData context menus * Make TabularData template hooks responsive to column name changes. * Reduced spacing between template hooks * Better table styling and rename column popup * Add 'carry with' feature to Prompt Permutation recursive generation using `associate_id` * Much nicer var tags on inspect window * Nicer styling for LLM group headers in inspect screen * Pass metavars around in the backend to surface them to front-end * Set min-height on inspect node to be larger * Added in-line print in Eval nodes * Append error message to print output * Minor inspect node CSS tweaks and fixes * Removed mix-blend-mode due to performance issues scrolling large text * Added ground truth eval example for math problems * Updated React build and version number
84 lines
2.4 KiB
JSON
84 lines
2.4 KiB
JSON
{
|
|
"name": "chain-forge",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@codemirror/lang-javascript": "^6.1.5",
|
|
"@codemirror/lang-python": "^6.1.2",
|
|
"@emoji-mart/data": "^1.1.2",
|
|
"@emoji-mart/react": "^1.1.1",
|
|
"@mantine/core": "^6.0.9",
|
|
"@mantine/dates": "^6.0.13",
|
|
"@mantine/form": "^6.0.11",
|
|
"@reactflow/background": "^11.2.0",
|
|
"@reactflow/controls": "^11.1.11",
|
|
"@reactflow/core": "^11.7.0",
|
|
"@reactflow/node-resizer": "^2.1.0",
|
|
"@rjsf/core": "^5.7.3",
|
|
"@rjsf/utils": "^5.7.3",
|
|
"@rjsf/validator-ajv8": "^5.7.3",
|
|
"@tabler/icons-react": "^2.17.0",
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
"@testing-library/react": "^13.4.0",
|
|
"@testing-library/user-event": "^13.5.0",
|
|
"@uiw/codemirror-theme-material": "^4.19.16",
|
|
"@uiw/codemirror-theme-noctis-lilac": "^4.19.16",
|
|
"@uiw/codemirror-theme-okaidia": "^4.19.16",
|
|
"@uiw/codemirror-theme-solarized": "^4.19.16",
|
|
"@uiw/codemirror-theme-sublime": "^4.19.16",
|
|
"@uiw/codemirror-theme-xcode": "^4.19.16",
|
|
"@uiw/codemirror-themes": "^4.19.16",
|
|
"@uiw/react-codemirror": "^4.19.16",
|
|
"ace-builds": "^1.18.0",
|
|
"bootstrap": "^5.2.3",
|
|
"codemirror": "^6.0.1",
|
|
"codemirror-readonly-ranges": "^0.1.0-alpha.1",
|
|
"dayjs": "^1.11.8",
|
|
"emoji-mart": "^5.5.2",
|
|
"emoji-picker-react": "^4.4.9",
|
|
"mantine-contextmenu": "^1.2.15",
|
|
"mantine-react-table": "^1.0.0-beta.8",
|
|
"papaparse": "^5.4.1",
|
|
"plotly.js": "^2.21.0",
|
|
"react": "^18.2.0",
|
|
"react-ace": "^10.1.0",
|
|
"react-beautiful-dnd": "^13.1.1",
|
|
"react-csv": "^2.2.2",
|
|
"react-dom": "^18.2.0",
|
|
"react-edit-text": "^5.1.0",
|
|
"react-flow-renderer": "^10.3.17",
|
|
"react-plotly.js": "^2.6.0",
|
|
"react-scripts": "5.0.1",
|
|
"socket.io-client": "^4.6.1",
|
|
"styled-components": "^5.3.10",
|
|
"uuidv4": "^6.2.13",
|
|
"web-vitals": "^2.1.4",
|
|
"xlsx": "^0.18.5",
|
|
"zustand": "^4.3.7"
|
|
},
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test",
|
|
"eject": "react-scripts eject"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|