feat: retro Claude ekip konsolunu kur

This commit is contained in:
2026-03-16 23:38:15 +03:00
parent 9294028fb2
commit 68d5c2afea
32 changed files with 5207 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "startup-claude-retro-console",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm:dev:server\" \"npm:dev:web\"",
"dev:server": "node --watch server/index.js",
"dev:web": "vite --config web/vite.config.js",
"build": "vite build --config web/vite.config.js",
"start": "NODE_ENV=production node server/index.js"
},
"dependencies": {
"dotenv": "^16.4.7",
"express": "^4.21.2",
"node-pty": "^1.0.0",
"socket.io": "^4.8.1",
"strip-ansi": "^7.1.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"socket.io-client": "^4.8.1",
"vite": "^6.2.0"
}
}