-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.55 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
{
"name": "bragfeed.dev",
"version": "1.0.0",
"private": true,
"engines": {
"node": "20"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"stripe:listen": "stripe listen --forward-to localhost:3000/api/purchases/webhook",
"test": "vitest run",
"test:watch": "vitest",
"check:types": "tsc --noEmit",
"check:build": "next build",
"check": "npm run check:format && npm run check:types && npm run check:lint && npm run test && npm run check:build",
"check:lint": "eslint --cache --cache-location .next/cache/eslint/",
"check:format": "prettier --check ./src",
"format": "prettier --write ./src",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:clear": "tsx src/scripts/clear-database.ts",
"db:seed": "tsx src/scripts/seed/seed.ts",
"db:fresh": "npm run db:clear && npm run db:migrate && npm run db:seed",
"db:production:migrate": "tsx src/scripts/migrate-production.ts"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.7.4",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.8",
"@stripe/stripe-js": "^7.3.0",
"@tanstack/react-query": "^5.71.0",
"@tanstack/react-query-devtools": "^5.71.0",
"@vercel/analytics": "^1.5.0",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.38.1",
"drizzle-zod": "^0.6.0",
"holy-loader": "^2.3.13",
"lucide-react": "^0.474.0",
"next": "^16.0.10",
"next-auth": "^5.0.0-beta.30",
"next-themes": "^0.4.4",
"nodemailer": "^7.0.11",
"postgres": "^3.4.5",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-code-blocks": "^0.1.6",
"react-dom": "^19.0.0",
"sonner": "^1.7.2",
"stripe": "^18.1.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0",
"vitest": "^3.0.8",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/google.maps": "^3.58.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"postcss": "^8",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5"
}
}