Deps
This commit is contained in:
parent
e15bd91d8a
commit
4347e9ed7b
4 changed files with 384 additions and 359 deletions
|
@ -9,6 +9,8 @@ UPSTASH_RATELIMIT_REQUESTS=""
|
|||
UPSTASH_RATELIMIT_SECONDS=""
|
||||
|
||||
#Auth
|
||||
NEXT_PUBLIC_CLERK_SIGN_UP_URL="/sign-up"
|
||||
NEXT_PUBLIC_CLERK_SIGN_IN_URL="/sign-in"
|
||||
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=""
|
||||
CLERK_SECRET_KEY=""
|
||||
CLERK_WEBHOOK_SIGNING_SECRET=""
|
||||
|
|
28
package.json
28
package.json
|
@ -19,41 +19,41 @@
|
|||
"@neondatabase/serverless": "^0.6.0",
|
||||
"@paralleldrive/cuid2": "^2.2.2",
|
||||
"@t3-oss/env-nextjs": "^0.6.1",
|
||||
"@unkey/api": "^0.6.21",
|
||||
"@unkey/api": "^0.8.0",
|
||||
"@upstash/ratelimit": "^0.4.4",
|
||||
"@upstash/redis": "^1.22.0",
|
||||
"autoprefixer": "^10.4.15",
|
||||
"csv42": "^5.0.0",
|
||||
"dotenv": "^16.3.1",
|
||||
"drizzle-orm": "^0.28.6",
|
||||
"next": "^13.4.19",
|
||||
"next": "^13.5.1",
|
||||
"nextjs-cors": "^2.1.2",
|
||||
"postcss": "^8.4.29",
|
||||
"postcss": "^8.4.30",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0",
|
||||
"react-icons": "^4.11.0",
|
||||
"sharp": "^0.32.5",
|
||||
"sharp": "^0.32.6",
|
||||
"superjson": "1.13.1",
|
||||
"svix": "^1.11.0",
|
||||
"svix": "^1.12.0",
|
||||
"zod": "^3.22.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/eslint": "^8.44.2",
|
||||
"@types/json2csv": "^5.0.3",
|
||||
"@types/node": "^20.6.0",
|
||||
"@types/react": "^18.2.21",
|
||||
"@typescript-eslint/eslint-plugin": "^6.6.0",
|
||||
"@typescript-eslint/parser": "^6.6.0",
|
||||
"@types/json2csv": "^5.0.4",
|
||||
"@types/node": "^20.6.3",
|
||||
"@types/react": "^18.2.22",
|
||||
"@typescript-eslint/eslint-plugin": "^6.7.2",
|
||||
"@typescript-eslint/parser": "^6.7.2",
|
||||
"bufferutil": "^4.0.7",
|
||||
"daisyui": "^3.7.3",
|
||||
"daisyui": "^3.7.6",
|
||||
"drizzle-kit": "^0.19.13",
|
||||
"encoding": "^0.1.13",
|
||||
"eslint": "^8.49.0",
|
||||
"eslint-config-next": "^13.4.19",
|
||||
"eslint-config-next": "^13.5.1",
|
||||
"pg": "^8.11.3",
|
||||
"tailwindcss": "^3.3.3",
|
||||
"typescript": "^5.2.2",
|
||||
"utf-8-validate": "5.0.2",
|
||||
"ws": "^8.14.1"
|
||||
"utf-8-validate": "6.0.3",
|
||||
"ws": "^8.14.2"
|
||||
}
|
||||
}
|
||||
|
|
709
pnpm-lock.yaml
generated
709
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
@ -19,11 +19,15 @@ export const env = createEnv({
|
|||
NEXT_PUBLIC_ABLY_PUBLIC_KEY: z.string(),
|
||||
NEXT_PUBLIC_APP_ENV: z.string(),
|
||||
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: z.string(),
|
||||
NEXT_PUBLIC_CLERK_SIGN_UP_URL: z.string(),
|
||||
NEXT_PUBLIC_CLERK_SIGN_IN_URL: z.string(),
|
||||
},
|
||||
experimental__runtimeEnv: {
|
||||
NEXT_PUBLIC_ABLY_PUBLIC_KEY: process.env.NEXT_PUBLIC_ABLY_PUBLIC_KEY,
|
||||
NEXT_PUBLIC_APP_ENV: process.env.NEXT_PUBLIC_APP_ENV,
|
||||
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY:
|
||||
process.env.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY,
|
||||
NEXT_PUBLIC_CLERK_SIGN_UP_URL: process.env.NEXT_PUBLIC_CLERK_SIGN_UP_URL,
|
||||
NEXT_PUBLIC_CLERK_SIGN_IN_URL: process.env.NEXT_PUBLIC_CLERK_SIGN_IN_URL,
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue