diff options
| author | Dhravya <[email protected]> | 2024-02-21 16:11:35 -0700 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-02-21 16:11:35 -0700 |
| commit | cdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526 (patch) | |
| tree | e0234f7fff63b312f18c945bed37a430d1e68755 /apps/web/package.json | |
| download | supermemory-cdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526.tar.xz supermemory-cdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526.zip | |
initialised monorepo with auth and extension communication
Diffstat (limited to 'apps/web/package.json')
| -rw-r--r-- | apps/web/package.json | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/apps/web/package.json b/apps/web/package.json new file mode 100644 index 00000000..e9b94977 --- /dev/null +++ b/apps/web/package.json @@ -0,0 +1,49 @@ +{ + "name": "web", + "version": "0.1.0", + "private": true, + "type": "module", + "scripts": { + "build": "next build", + "db:push": "drizzle-kit push:sqlite", + "db:studio": "drizzle-kit studio", + "dev": "next dev", + "lint": "next lint", + "start": "next start" + }, + "dependencies": { + "@auth/drizzle-adapter": "^0.3.6", + "@libsql/client": "^0.5.1", + "@t3-oss/env-nextjs": "^0.7.1", + "better-sqlite3": "^9.0.0", + "bun": "^1.0.28", + "drizzle-orm": "^0.29.3", + "next": "^14.0.4", + "next-auth": "^4.24.5", + "react": "^18.2.0", + "react-dom": "18.2.0", + "zod": "^3.22.4" + }, + "devDependencies": { + "@types/better-sqlite3": "^7.6.6", + "@types/eslint": "^8.44.7", + "@types/node": "^18.17.0", + "@types/react": "^18.2.37", + "@types/react-dom": "^18.2.15", + "@typescript-eslint/eslint-plugin": "^6.11.0", + "@typescript-eslint/parser": "^6.11.0", + "autoprefixer": "^10.4.14", + "drizzle-kit": "^0.20.14", + "eslint": "^8.54.0", + "eslint-config-next": "^14.0.4", + "postcss": "^8.4.31", + "prettier": "^3.1.0", + "prettier-plugin-tailwindcss": "^0.5.7", + "tailwindcss": "^3.3.5", + "typescript": "^5.1.6", + "tsconfig": "workspace:*" + }, + "ct3aMetadata": { + "initVersion": "7.26.0" + } +}
\ No newline at end of file |