create-stackkit-app 0.3.1 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (103) hide show
  1. package/README.md +10 -97
  2. package/dist/index.d.ts +0 -1
  3. package/dist/index.js +0 -1
  4. package/dist/lib/create-project.d.ts +0 -1
  5. package/dist/lib/create-project.js +103 -69
  6. package/dist/lib/template-composer.d.ts +0 -1
  7. package/dist/lib/template-composer.js +0 -2
  8. package/modules/auth/better-auth-express/files/lib/auth.ts +16 -0
  9. package/{templates/auth/authjs-express → modules/auth/better-auth-express}/files/routes/auth.ts +3 -3
  10. package/{templates/auth/authjs-express → modules/auth/better-auth-express}/module.json +9 -10
  11. package/{templates/auth/better-auth-nextjs/app → modules/auth/better-auth-nextjs/files}/api/auth/[...all]/route.ts +1 -0
  12. package/modules/auth/better-auth-nextjs/files/lib/auth.ts +26 -0
  13. package/modules/auth/better-auth-nextjs/module.json +41 -0
  14. package/modules/auth/clerk-express/files/lib/auth.ts +7 -0
  15. package/modules/auth/clerk-express/module.json +19 -0
  16. package/modules/auth/clerk-nextjs/files/lib/auth-provider.tsx +5 -0
  17. package/modules/auth/clerk-nextjs/files/middleware.ts +9 -0
  18. package/modules/auth/clerk-nextjs/module.json +27 -0
  19. package/modules/auth/clerk-react/files/lib/auth-provider.tsx +15 -0
  20. package/modules/auth/clerk-react/module.json +18 -0
  21. package/modules/database/drizzle-postgresql/files/drizzle.config.ts +10 -0
  22. package/modules/database/drizzle-postgresql/files/lib/db.ts +7 -0
  23. package/modules/database/drizzle-postgresql/files/lib/schema.ts +8 -0
  24. package/modules/database/drizzle-postgresql/module.json +34 -0
  25. package/modules/database/mongoose-mongodb/files/lib/db.ts +40 -0
  26. package/modules/database/mongoose-mongodb/module.json +17 -0
  27. package/{templates/databases/prisma-postgresql → modules/database/prisma-mongodb/files}/lib/db.ts +2 -6
  28. package/{templates/databases/prisma-mongodb → modules/database/prisma-mongodb/files}/prisma/schema.prisma +1 -0
  29. package/modules/database/prisma-mongodb/module.json +36 -0
  30. package/{templates/databases/prisma-mongodb → modules/database/prisma-postgresql/files}/lib/db.ts +2 -6
  31. package/{templates/databases/prisma-postgresql → modules/database/prisma-postgresql/files}/prisma/schema.prisma +1 -0
  32. package/modules/database/prisma-postgresql/module.json +36 -0
  33. package/package.json +8 -6
  34. package/templates/bases/express-base/package.json +3 -3
  35. package/templates/bases/express-base/src/app.ts +34 -0
  36. package/templates/bases/express-base/src/config/env.ts +14 -0
  37. package/templates/bases/express-base/src/middlewares/error.middleware.ts +12 -0
  38. package/templates/bases/express-base/src/server.ts +8 -0
  39. package/templates/bases/express-base/template.json +1 -1
  40. package/templates/bases/express-base/tsconfig.json +5 -8
  41. package/templates/bases/nextjs-base/README.md +36 -0
  42. package/templates/bases/nextjs-base/app/favicon.ico +0 -0
  43. package/templates/bases/nextjs-base/app/globals.css +26 -3
  44. package/templates/bases/nextjs-base/app/layout.tsx +21 -6
  45. package/templates/bases/nextjs-base/app/page.tsx +61 -4
  46. package/templates/bases/nextjs-base/eslint.config.mjs +18 -0
  47. package/templates/bases/nextjs-base/next.config.ts +4 -2
  48. package/templates/bases/nextjs-base/package.json +12 -10
  49. package/templates/bases/nextjs-base/postcss.config.mjs +7 -0
  50. package/templates/bases/nextjs-base/public/file.svg +1 -0
  51. package/templates/bases/nextjs-base/public/globe.svg +1 -0
  52. package/templates/bases/nextjs-base/public/next.svg +1 -0
  53. package/templates/bases/nextjs-base/public/vercel.svg +1 -0
  54. package/templates/bases/nextjs-base/public/window.svg +1 -0
  55. package/templates/bases/nextjs-base/template.json +13 -2
  56. package/templates/bases/nextjs-base/tsconfig.json +9 -2
  57. package/templates/bases/react-vite-base/README.md +73 -0
  58. package/templates/bases/react-vite-base/eslint.config.js +23 -0
  59. package/templates/bases/react-vite-base/index.html +13 -0
  60. package/templates/bases/react-vite-base/package.json +30 -0
  61. package/templates/bases/react-vite-base/public/vite.svg +1 -0
  62. package/templates/bases/react-vite-base/src/App.css +42 -0
  63. package/templates/bases/react-vite-base/src/App.tsx +35 -0
  64. package/templates/bases/react-vite-base/src/assets/react.svg +1 -0
  65. package/templates/bases/react-vite-base/src/index.css +68 -0
  66. package/templates/bases/react-vite-base/src/main.tsx +10 -0
  67. package/templates/bases/react-vite-base/template.json +19 -0
  68. package/templates/bases/react-vite-base/tsconfig.app.json +28 -0
  69. package/templates/bases/react-vite-base/tsconfig.json +7 -0
  70. package/templates/bases/react-vite-base/tsconfig.node.json +26 -0
  71. package/templates/bases/react-vite-base/vite.config.ts +7 -0
  72. package/dist/index.d.ts.map +0 -1
  73. package/dist/index.js.map +0 -1
  74. package/dist/lib/create-project.d.ts.map +0 -1
  75. package/dist/lib/create-project.js.map +0 -1
  76. package/dist/lib/template-composer.d.ts.map +0 -1
  77. package/dist/lib/template-composer.js.map +0 -1
  78. package/templates/auth/authjs-express/config.json +0 -20
  79. package/templates/auth/authjs-express/files/lib/auth.ts +0 -43
  80. package/templates/auth/authjs-express/lib/auth.ts +0 -43
  81. package/templates/auth/authjs-express/routes/auth.ts +0 -12
  82. package/templates/auth/authjs-nextjs/app/api/auth/[...nextauth]/route.ts +0 -3
  83. package/templates/auth/authjs-nextjs/config.json +0 -19
  84. package/templates/auth/authjs-nextjs/files/api/auth/[...nextauth]/route.ts +0 -3
  85. package/templates/auth/authjs-nextjs/files/lib/auth.ts +0 -45
  86. package/templates/auth/authjs-nextjs/lib/auth.ts +0 -45
  87. package/templates/auth/authjs-nextjs/module.json +0 -38
  88. package/templates/auth/better-auth-express/config.json +0 -18
  89. package/templates/auth/better-auth-express/src/lib/auth.ts +0 -12
  90. package/templates/auth/better-auth-express/src/routes/auth.ts +0 -10
  91. package/templates/auth/better-auth-nextjs/config.json +0 -18
  92. package/templates/auth/better-auth-nextjs/lib/auth.ts +0 -14
  93. package/templates/auth/better-auth-react/config.json +0 -15
  94. package/templates/auth/better-auth-react/lib/auth-client.ts +0 -9
  95. package/templates/auth/nextauth/app/api/auth/[...nextauth]/route.ts +0 -3
  96. package/templates/auth/nextauth/config.json +0 -18
  97. package/templates/auth/nextauth/lib/auth.ts +0 -31
  98. package/templates/bases/express-base/src/index.ts +0 -27
  99. package/templates/bases/nextjs-base/.eslintrc.json +0 -3
  100. package/templates/databases/prisma-mongodb/config.json +0 -21
  101. package/templates/databases/prisma-postgresql/config.json +0 -22
  102. /package/{templates → modules}/auth/better-auth-react/files/lib/auth-client.ts +0 -0
  103. /package/{templates → modules}/auth/better-auth-react/module.json +0 -0
@@ -1,43 +0,0 @@
1
- import { Auth } from '@auth/core';
2
- import GitHub from '@auth/core/providers/github';
3
- import Google from '@auth/core/providers/google';
4
- import Credentials from '@auth/core/providers/credentials';
5
-
6
- export const authConfig = {
7
- secret: process.env.AUTH_SECRET,
8
- trustHost: true,
9
- providers: [
10
- // GitHub OAuth Provider
11
- // Uncomment and add GITHUB_ID and GITHUB_SECRET to .env
12
- // GitHub({
13
- // clientId: process.env.GITHUB_ID!,
14
- // clientSecret: process.env.GITHUB_SECRET!,
15
- // }),
16
-
17
- // Google OAuth Provider
18
- // Uncomment and add GOOGLE_ID and GOOGLE_SECRET to .env
19
- // Google({
20
- // clientId: process.env.GOOGLE_ID!,
21
- // clientSecret: process.env.GOOGLE_SECRET!,
22
- // }),
23
-
24
- // Credentials Provider (email/password)
25
- Credentials({
26
- credentials: {
27
- email: { label: 'Email', type: 'email' },
28
- password: { label: 'Password', type: 'password' },
29
- },
30
- authorize: async (credentials) => {
31
- // Add your own authentication logic here
32
- if (credentials?.email === 'demo@example.com' && credentials?.password === 'demo') {
33
- return {
34
- id: '1',
35
- name: 'Demo User',
36
- email: 'demo@example.com',
37
- };
38
- }
39
- return null;
40
- },
41
- }),
42
- ],
43
- };
@@ -1,43 +0,0 @@
1
- import { Auth } from '@auth/core';
2
- import GitHub from '@auth/core/providers/github';
3
- import Google from '@auth/core/providers/google';
4
- import Credentials from '@auth/core/providers/credentials';
5
-
6
- export const authConfig = {
7
- secret: process.env.AUTH_SECRET,
8
- trustHost: true,
9
- providers: [
10
- // GitHub OAuth Provider
11
- // Uncomment and add GITHUB_ID and GITHUB_SECRET to .env
12
- // GitHub({
13
- // clientId: process.env.GITHUB_ID!,
14
- // clientSecret: process.env.GITHUB_SECRET!,
15
- // }),
16
-
17
- // Google OAuth Provider
18
- // Uncomment and add GOOGLE_ID and GOOGLE_SECRET to .env
19
- // Google({
20
- // clientId: process.env.GOOGLE_ID!,
21
- // clientSecret: process.env.GOOGLE_SECRET!,
22
- // }),
23
-
24
- // Credentials Provider (email/password)
25
- Credentials({
26
- credentials: {
27
- email: { label: 'Email', type: 'email' },
28
- password: { label: 'Password', type: 'password' },
29
- },
30
- authorize: async (credentials) => {
31
- // Add your own authentication logic here
32
- if (credentials?.email === 'demo@example.com' && credentials?.password === 'demo') {
33
- return {
34
- id: '1',
35
- name: 'Demo User',
36
- email: 'demo@example.com',
37
- };
38
- }
39
- return null;
40
- },
41
- }),
42
- ],
43
- };
@@ -1,12 +0,0 @@
1
- import { Router } from 'express';
2
- import { Auth } from '@auth/core';
3
- import { authConfig } from '../lib/auth';
4
-
5
- const router = Router();
6
-
7
- router.all('/auth/*', async (req, res) => {
8
- const response = await Auth(req, authConfig);
9
- return res.status(response.status).json(response.body);
10
- });
11
-
12
- export default router;
@@ -1,3 +0,0 @@
1
- import { handlers } from '@/lib/auth';
2
-
3
- export const { GET, POST } = handlers;
@@ -1,19 +0,0 @@
1
- {
2
- "name": "authjs-nextjs",
3
- "displayName": "Auth.js v5 (Next.js)",
4
- "description": "Modern authentication with Auth.js v5 (NextAuth successor)",
5
- "frameworks": ["nextjs"],
6
- "dependencies": {
7
- "next-auth": "^5.0.0-beta.25"
8
- },
9
- "envVars": {
10
- "AUTH_SECRET": {
11
- "value": "",
12
- "description": "Secret for encrypting tokens. Generate with: openssl rand -base64 32"
13
- },
14
- "AUTH_URL": {
15
- "value": "http://localhost:3000",
16
- "description": "Canonical URL of your site (change in production)"
17
- }
18
- }
19
- }
@@ -1,3 +0,0 @@
1
- import { handlers } from '@/lib/auth';
2
-
3
- export const { GET, POST } = handlers;
@@ -1,45 +0,0 @@
1
- import NextAuth from 'next-auth';
2
- import GitHub from 'next-auth/providers/github';
3
- import Google from 'next-auth/providers/google';
4
- import Credentials from 'next-auth/providers/credentials';
5
-
6
- export const { handlers, signIn, signOut, auth } = NextAuth({
7
- providers: [
8
- // GitHub OAuth Provider
9
- // Uncomment and add GITHUB_ID and GITHUB_SECRET to .env
10
- // GitHub({
11
- // clientId: process.env.GITHUB_ID!,
12
- // clientSecret: process.env.GITHUB_SECRET!,
13
- // }),
14
-
15
- // Google OAuth Provider
16
- // Uncomment and add GOOGLE_ID and GOOGLE_SECRET to .env
17
- // Google({
18
- // clientId: process.env.GOOGLE_ID!,
19
- // clientSecret: process.env.GOOGLE_SECRET!,
20
- // }),
21
-
22
- // Credentials Provider (email/password)
23
- Credentials({
24
- credentials: {
25
- email: { label: 'Email', type: 'email' },
26
- password: { label: 'Password', type: 'password' },
27
- },
28
- authorize: async (credentials) => {
29
- // Add your own authentication logic here
30
- // This is just a demo - DO NOT use in production
31
- if (credentials?.email === 'demo@example.com' && credentials?.password === 'demo') {
32
- return {
33
- id: '1',
34
- name: 'Demo User',
35
- email: 'demo@example.com',
36
- };
37
- }
38
- return null;
39
- },
40
- }),
41
- ],
42
- pages: {
43
- signIn: '/auth/signin',
44
- },
45
- });
@@ -1,45 +0,0 @@
1
- import NextAuth from 'next-auth';
2
- import GitHub from 'next-auth/providers/github';
3
- import Google from 'next-auth/providers/google';
4
- import Credentials from 'next-auth/providers/credentials';
5
-
6
- export const { handlers, signIn, signOut, auth } = NextAuth({
7
- providers: [
8
- // GitHub OAuth Provider
9
- // Uncomment and add GITHUB_ID and GITHUB_SECRET to .env
10
- // GitHub({
11
- // clientId: process.env.GITHUB_ID!,
12
- // clientSecret: process.env.GITHUB_SECRET!,
13
- // }),
14
-
15
- // Google OAuth Provider
16
- // Uncomment and add GOOGLE_ID and GOOGLE_SECRET to .env
17
- // Google({
18
- // clientId: process.env.GOOGLE_ID!,
19
- // clientSecret: process.env.GOOGLE_SECRET!,
20
- // }),
21
-
22
- // Credentials Provider (email/password)
23
- Credentials({
24
- credentials: {
25
- email: { label: 'Email', type: 'email' },
26
- password: { label: 'Password', type: 'password' },
27
- },
28
- authorize: async (credentials) => {
29
- // Add your own authentication logic here
30
- // This is just a demo - DO NOT use in production
31
- if (credentials?.email === 'demo@example.com' && credentials?.password === 'demo') {
32
- return {
33
- id: '1',
34
- name: 'Demo User',
35
- email: 'demo@example.com',
36
- };
37
- }
38
- return null;
39
- },
40
- }),
41
- ],
42
- pages: {
43
- signIn: '/auth/signin',
44
- },
45
- });
@@ -1,38 +0,0 @@
1
- {
2
- "name": "auth",
3
- "displayName": "Auth.js v5 (Next.js)",
4
- "description": "Modern authentication with Auth.js v5 (NextAuth successor)",
5
- "category": "auth",
6
- "supportedFrameworks": ["nextjs"],
7
- "dependencies": {
8
- "next-auth": "^5.0.0-beta.25"
9
- },
10
- "envVars": [
11
- {
12
- "key": "AUTH_SECRET",
13
- "value": "",
14
- "description": "Secret for encrypting tokens. Generate with: openssl rand -base64 32",
15
- "required": true
16
- },
17
- {
18
- "key": "AUTH_URL",
19
- "value": "http://localhost:3000",
20
- "description": "Canonical URL of your site (change in production)",
21
- "required": false
22
- }
23
- ],
24
- "patches": [
25
- {
26
- "type": "create-file",
27
- "description": "Create Auth.js configuration",
28
- "source": "lib/auth.ts",
29
- "destination": "{{lib}}/auth.ts"
30
- },
31
- {
32
- "type": "create-file",
33
- "description": "Create Auth.js API route",
34
- "source": "api/auth/[...nextauth]/route.ts",
35
- "destination": "{{router}}/api/auth/[...nextauth]/route.ts"
36
- }
37
- ]
38
- }
@@ -1,18 +0,0 @@
1
- {
2
- "name": "better-auth-express",
3
- "displayName": "Better Auth (Express)",
4
- "auth": "better-auth",
5
- "compatibleWith": {
6
- "frameworks": ["express"],
7
- "databases": ["prisma-postgresql", "prisma-mongodb"]
8
- },
9
- "dependencies": {
10
- "better-auth": "^1.1.4",
11
- "@better-auth/prisma": "^1.1.4"
12
- },
13
- "env": {
14
- "BETTER_AUTH_SECRET": "your-secret-here",
15
- "BETTER_AUTH_URL": "http://localhost:3000"
16
- },
17
- "files": ["src/lib/auth.ts", "src/routes/auth.ts"]
18
- }
@@ -1,12 +0,0 @@
1
- import { prismaAdapter } from '@better-auth/prisma';
2
- import { betterAuth } from 'better-auth';
3
- import { prisma } from './db';
4
-
5
- export const auth = betterAuth({
6
- database: prismaAdapter(prisma, {
7
- provider: 'postgresql',
8
- }),
9
- emailAndPassword: {
10
- enabled: true,
11
- },
12
- });
@@ -1,10 +0,0 @@
1
- import { Router } from 'express';
2
- import { auth } from '../lib/auth';
3
-
4
- const router = Router();
5
-
6
- router.all('*', async (req, res) => {
7
- return auth.handler(req, res);
8
- });
9
-
10
- export default router;
@@ -1,18 +0,0 @@
1
- {
2
- "name": "better-auth-nextjs",
3
- "displayName": "Better Auth (Next.js)",
4
- "auth": "better-auth",
5
- "compatibleWith": {
6
- "frameworks": ["nextjs"],
7
- "databases": ["prisma-postgresql", "prisma-mongodb"]
8
- },
9
- "dependencies": {
10
- "better-auth": "^1.1.4",
11
- "@better-auth/prisma": "^1.1.4"
12
- },
13
- "env": {
14
- "BETTER_AUTH_SECRET": "your-secret-here",
15
- "BETTER_AUTH_URL": "http://localhost:3000"
16
- },
17
- "files": ["lib/auth.ts", "app/api/auth/[...all]/route.ts"]
18
- }
@@ -1,14 +0,0 @@
1
- import { prismaAdapter } from '@better-auth/prisma';
2
- import { betterAuth } from 'better-auth';
3
- import { prisma } from './db';
4
-
5
- export const auth = betterAuth({
6
- database: prismaAdapter(prisma, {
7
- provider: 'postgresql',
8
- }),
9
- emailAndPassword: {
10
- enabled: true,
11
- },
12
- });
13
-
14
- export type Session = typeof auth.$Infer.Session;
@@ -1,15 +0,0 @@
1
- {
2
- "name": "better-auth-react",
3
- "displayName": "Better Auth (React)",
4
- "description": "Client-side authentication with Better Auth for React",
5
- "frameworks": ["react", "react-vite"],
6
- "dependencies": {
7
- "better-auth": "^1.0.0"
8
- },
9
- "envVars": {
10
- "VITE_AUTH_URL": {
11
- "value": "http://localhost:3000",
12
- "description": "Base URL of your auth server (optional if same domain)"
13
- }
14
- }
15
- }
@@ -1,9 +0,0 @@
1
- import { createAuthClient } from 'better-auth/react';
2
-
3
- export const authClient = createAuthClient({
4
- /** The base URL of the server (optional if you're using the same domain) */
5
- baseURL: import.meta.env.VITE_AUTH_URL || 'http://localhost:3000',
6
- });
7
-
8
- // Export specific methods for convenience
9
- export const { signIn, signUp, signOut, useSession } = authClient;
@@ -1,3 +0,0 @@
1
- import { handlers } from '@/lib/auth';
2
-
3
- export const { GET, POST } = handlers;
@@ -1,18 +0,0 @@
1
- {
2
- "name": "nextauth",
3
- "displayName": "Auth.js (NextAuth)",
4
- "auth": "nextauth",
5
- "compatibleWith": {
6
- "frameworks": ["nextjs"],
7
- "databases": ["prisma-postgresql", "prisma-mongodb"]
8
- },
9
- "dependencies": {
10
- "next-auth": "^5.0.0-beta.25",
11
- "@auth/prisma-adapter": "^2.7.4"
12
- },
13
- "env": {
14
- "AUTH_SECRET": "your-secret-here",
15
- "NEXTAUTH_URL": "http://localhost:3000"
16
- },
17
- "files": ["app/api/auth/[...nextauth]/route.ts", "lib/auth.ts", "middleware.ts"]
18
- }
@@ -1,31 +0,0 @@
1
- import { prisma } from '@/lib/db';
2
- import { PrismaAdapter } from '@auth/prisma-adapter';
3
- import NextAuth from 'next-auth';
4
- import CredentialsProvider from 'next-auth/providers/credentials';
5
-
6
- export const { handlers, auth, signIn, signOut } = NextAuth({
7
- adapter: PrismaAdapter(prisma),
8
- session: {
9
- strategy: 'jwt',
10
- },
11
- providers: [
12
- CredentialsProvider({
13
- name: 'Credentials',
14
- credentials: {
15
- email: { label: 'Email', type: 'email' },
16
- password: { label: 'Password', type: 'password' },
17
- },
18
- async authorize(credentials) {
19
- // Add your authentication logic here
20
- if (!credentials?.email || !credentials?.password) {
21
- return null;
22
- }
23
- // Replace with your actual user lookup
24
- return { id: '1', email: credentials.email as string };
25
- },
26
- }),
27
- ],
28
- pages: {
29
- signIn: '/auth/signin',
30
- },
31
- });
@@ -1,27 +0,0 @@
1
- import express, { Request, Response } from 'express';
2
- import dotenv from 'dotenv';
3
- import cors from 'cors';
4
-
5
- dotenv.config();
6
-
7
- const app = express();
8
- const PORT = process.env.PORT || 3000;
9
-
10
- // Middleware
11
- app.use(cors());
12
- app.use(express.json());
13
- app.use(express.urlencoded({ extended: true }));
14
-
15
- // Routes
16
- app.get('/health', (req: Request, res: Response) => {
17
- res.json({ status: 'ok', timestamp: new Date().toISOString() });
18
- });
19
-
20
- app.get('/', (req: Request, res: Response) => {
21
- res.json({ message: 'Welcome to StackKit API' });
22
- });
23
-
24
- // Start server
25
- app.listen(PORT, () => {
26
- console.log(`🚀 Server running on http://localhost:${PORT}`);
27
- });
@@ -1,3 +0,0 @@
1
- {
2
- "extends": "next/core-web-vitals"
3
- }
@@ -1,21 +0,0 @@
1
- {
2
- "name": "prisma-mongodb",
3
- "displayName": "Prisma + MongoDB",
4
- "database": "prisma-mongodb",
5
- "compatibleWith": ["nextjs", "express"],
6
- "dependencies": {
7
- "@prisma/client": "^6.2.0"
8
- },
9
- "devDependencies": {
10
- "prisma": "^6.2.0"
11
- },
12
- "scripts": {
13
- "db:generate": "prisma generate",
14
- "db:push": "prisma db push",
15
- "db:studio": "prisma studio"
16
- },
17
- "env": {
18
- "DATABASE_URL": "mongodb://localhost:27017/mydb"
19
- },
20
- "files": ["prisma/schema.prisma", "lib/db.ts"]
21
- }
@@ -1,22 +0,0 @@
1
- {
2
- "name": "prisma-postgresql",
3
- "displayName": "Prisma + PostgreSQL",
4
- "database": "prisma-postgresql",
5
- "compatibleWith": ["nextjs", "express"],
6
- "dependencies": {
7
- "@prisma/client": "^6.2.0"
8
- },
9
- "devDependencies": {
10
- "prisma": "^6.2.0"
11
- },
12
- "scripts": {
13
- "db:generate": "prisma generate",
14
- "db:push": "prisma db push",
15
- "db:migrate": "prisma migrate dev",
16
- "db:studio": "prisma studio"
17
- },
18
- "env": {
19
- "DATABASE_URL": "postgresql://user:password@localhost:5432/mydb"
20
- },
21
- "files": ["prisma/schema.prisma", "lib/db.ts"]
22
- }