Spaces:
Runtime error
Runtime error
File size: 1,598 Bytes
8822914 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | {
"name": "ai-toolkit-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently -k -n WORKER,UI \"ts-node-dev --respawn --watch cron --transpile-only cron/worker.ts\" \"next dev --turbopack\"",
"build": "tsc -p tsconfig.worker.json && next build",
"start": "concurrently --restart-tries -1 --restart-after 1000 -n WORKER,UI \"node dist/worker.js\" \"next start --port 8675\"",
"build_and_start": "npm install && npm run update_db && npm run build && npm run start",
"lint": "next lint",
"update_db": "npx prisma generate && npx prisma db push",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,scss}\""
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@monaco-editor/react": "^4.7.0",
"@prisma/client": "^6.3.1",
"archiver": "^7.0.1",
"axios": "^1.7.9",
"classnames": "^2.5.1",
"lucide-react": "^0.475.0",
"next": "15.1.7",
"node-cache": "^5.1.2",
"prisma": "^6.3.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.5",
"react-global-hooks": "^1.3.5",
"react-icons": "^5.5.0",
"react-select": "^5.10.1",
"sqlite3": "^5.1.7",
"uuid": "^11.1.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.1.2",
"postcss": "^8",
"prettier": "^3.5.1",
"prettier-basic": "^1.0.0",
"tailwindcss": "^3.4.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5"
},
"prettier": "prettier-basic"
}
|