-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.75 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "nextbase",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"analyze": "next build",
"postbuild": "next-sitemap",
"lighthouse": "wait-on -t 30000 http://localhost:3000 && bun ./lighthouse.js http://localhost:3000",
"start": "next start -p 3000",
"lint": "eslint .",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.test.json",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"auth:generate": "bun x auth@latest generate --config ./src/lib/auth.ts --output ./src/db/schema/auth.ts -y",
"email:dev": "email dev --dir src/emails --port 4000",
"mailpit:up": "docker compose up -d mailpit",
"mailpit:down": "docker compose stop mailpit",
"clean": "rm -rf .next node_modules dist",
"reset": "bun run clean && bun install",
"lighthouse:dev": "bun run lighthouse && echo Lighthouse done.",
"lighthouse:prod": "bun run build && concurrently -k -s first \"next start -p 3100\" \"wait-on -t 30000 http://localhost:3100 && bun ./lighthouse.js http://localhost:3100\"",
"test": "bun run test:components && bun run test:e2e",
"test:components": "jest --runInBand",
"test:components:watch": "jest --watch",
"test:e2e": "cross-env BETTER_AUTH_TEST_UTILS=true playwright test",
"test:e2e:headed": "cross-env BETTER_AUTH_TEST_UTILS=true playwright test --headed",
"test:e2e:ui": "cross-env BETTER_AUTH_TEST_UTILS=true playwright test --ui",
"test:e2e:server": "cross-env NODE_ENV=test BETTER_AUTH_TEST_UTILS=true ANALYZE=false NEXT_DIST_DIR=.next-playwright BETTER_AUTH_URL=http://localhost:3001 next dev -p 3001"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@neondatabase/serverless": "^1.0.2",
"@next/bundle-analyzer": "^16.1.7",
"@phosphor-icons/react": "^2.1.10",
"@react-email/components": "1.0.10",
"@types/nodemailer": "^7.0.11",
"@uploadthing/react": "^7.3.3",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"better-auth": "^1.5.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"embla-carousel-react": "^8.6.0",
"input-otp": "^1.4.2",
"next": "16.1.7",
"next-sitemap": "^4.2.3",
"next-themes": "^0.4.6",
"nodemailer": "^8.0.3",
"react": "19.2.4",
"react-day-picker": "^9.14.0",
"react-dom": "19.2.4",
"react-hot-toast": "^2.6.0",
"react-resizable-panels": "^4.7.3",
"recharts": "2.15.4",
"resend": "^6.9.4",
"shadcn": "^4.0.8",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"uploadthing": "^7.7.4",
"vaul": "^1.1.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@react-email/preview-server": "5.2.10",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.1.7",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"lighthouse": "^13.0.3",
"react-email": "5.2.10",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"wait-on": "^9.0.4"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"esbuild",
"msw",
"sharp",
"unrs-resolver"
]
}