First commit.

This commit is contained in:
emil
2026-04-26 14:52:50 +03:00
commit 1ff8c733cc
27 changed files with 7017 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"name": "aiui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"build": "cd frontend && npm run build",
"start": "cd backend && npm start"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}