Scaffold web app

This commit is contained in:
tedspare
2025-11-18 16:05:05 -05:00
parent 15dce46be2
commit 51a8916a4c
40 changed files with 808 additions and 1 deletions

40
package.json Normal file
View File

@@ -0,0 +1,40 @@
{
"dependencies": {
"@prisma/client": "^6.14.0",
"@rubriclab/agents": "^0.0.58",
"@rubriclab/auth": "^0.0.50",
"@rubriclab/events": "^0.0.37",
"@t3-oss/env-nextjs": "^0.13.8",
"dotenv": "^17.2.1",
"next": "^15.5.1",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"description": "This project was bootstrapped with create-rubric-app",
"devDependencies": {
"@rubriclab/config": "^0.0.22",
"@types/node": "^24.3.0",
"@types/react": "^19.1.11",
"@types/react-dom": "^19.1.8",
"prisma": "^6.14.0",
"typescript": "^5.9.2",
"zod": "^4.1.3"
},
"license": "go nuts",
"name": "my-app",
"private": true,
"scripts": {
"bleed": "bun x npm-check-updates -u --dep prod,dev,optional,peer",
"build": "next build",
"check": "bun x biome check .",
"clean": "rm -rf .next && rm -rf node_modules",
"db:generate": "prisma generate",
"db:push": "bun --env-file=.env prisma generate && prisma db push",
"db:seed": "prisma db seed",
"db:studio": "prisma studio",
"dev": "next dev",
"format": "bun x biome check --write .",
"start": "next start"
},
"version": "0.0.0"
}