stack/apps/backend/package.json
Konstantin Wohlwend aada9d0797
Some checks failed
Runs E2E API Tests / build (20.x) (push) Has been cancelled
Runs E2E API Tests / build (22.6) (push) Has been cancelled
Lint & build / lint_and_build (20.x) (push) Has been cancelled
Lint & build / lint_and_build (22.6) (push) Has been cancelled
Mirror main branch to main-mirror-for-wdb / lint_and_build (push) Has been cancelled
Publish Docs / run (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled
chore: update package versions
2024-09-05 18:31:33 -07:00

60 lines
2.0 KiB
JSON

{
"name": "@stackframe/stack-backend",
"version": "2.5.30",
"private": true,
"scripts": {
"clean": "rimraf .next && rimraf node_modules",
"typecheck": "tsc --noEmit",
"with-env": "dotenv -c development --",
"with-env:prod": "dotenv -c --",
"dev": "concurrently -k \"next dev --port 8102\" \"pnpm run watch-docs\" \"pnpm run prisma-studio\"",
"build": "pnpm run codegen && next build",
"analyze-bundle": "ANALYZE_BUNDLE=1 pnpm run build",
"start": "next start --port 8102",
"codegen": "pnpm run prisma generate && pnpm run generate-docs",
"psql": "pnpm run with-env bash -c 'psql $STACK_DATABASE_CONNECTION_STRING'",
"prisma": "pnpm run with-env prisma",
"prisma-studio": "pnpm run with-env prisma studio --port 8106 --browser none",
"lint": "next lint",
"watch-docs": "pnpm run with-env tsx watch --clear-screen=false scripts/generate-docs.ts",
"generate-docs": "pnpm run with-env tsx scripts/generate-docs.ts",
"generate-keys": "pnpm run with-env tsx scripts/generate-keys.ts"
},
"prisma": {
"seed": "pnpm run with-env tsx prisma/seed.ts"
},
"dependencies": {
"@next/bundle-analyzer": "^14.0.3",
"@node-oauth/oauth2-server": "^5.1.0",
"@prisma/client": "^5.9.1",
"@sentry/nextjs": "^7.105.0",
"@stackframe/stack-emails": "workspace:*",
"@stackframe/stack-shared": "workspace:*",
"@vercel/analytics": "^1.2.2",
"bcrypt": "^5.1.1",
"dotenv-cli": "^7.3.0",
"jose": "^5.2.2",
"next": "^14.1",
"nodemailer": "^6.9.10",
"openid-client": "^5.6.4",
"oslo": "^1.2.1",
"pg": "^8.11.3",
"posthog-node": "^4.1.0",
"react": "^18.2",
"server-only": "^0.0.1",
"sharp": "^0.32.6",
"svix": "^1.25.0",
"yaml": "^2.4.5",
"yup": "^1.4.0"
},
"devDependencies": {
"@types/node": "^20.8.10",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18.2.66",
"glob": "^10.4.1",
"prisma": "^5.9.1",
"rimraf": "^5.0.5",
"tsx": "^4.7.2"
}
}