mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-19 02:54:28 -05:00
* Getting started with nextjs * fix linting * remove gitignore for package.json * pulling in reactflow components * updating css * use environment variables * clean up css / ui a lil * Fixed nodes/run button animation so they are always visible --------- Co-authored-by: Bentlybro <tomnoon9@gmail.com>
30 lines
621 B
JSON
30 lines
621 B
JSON
{
|
|
"name": "autogpt_builder",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"next": "14.2.4",
|
|
"react": "^18",
|
|
"react-dom": "^18",
|
|
"react-modal": "^3.16.1",
|
|
"reactflow": "^11.11.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"@types/react-modal": "^3.16.3",
|
|
"eslint": "^8",
|
|
"eslint-config-next": "14.2.4",
|
|
"postcss": "^8",
|
|
"tailwindcss": "^3.4.1",
|
|
"typescript": "^5"
|
|
}
|
|
}
|