-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.6 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
{
"name": "my-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "npx prisma generate && next build",
"postinstall": "npx prisma generate",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\" \"*.{js,ts,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\" \"*.{js,ts,json,md}\"",
"type-check": "tsc --noEmit",
"test": "echo \"No tests yet\" && exit 0",
"check": "npm run lint && npm run format:check && npm run type-check"
},
"dependencies": {
"@gsap/react": "^2.1.2",
"@prisma/client": "^6.14.0",
"@sentry/nextjs": "^10.5.0",
"@types/bcryptjs": "^2.4.6",
"@upstash/ratelimit": "^2.0.6",
"@upstash/redis": "^1.35.3",
"@vercel/analytics": "^1.5.0",
"add": "^2.0.6",
"babel-plugin-react-compiler": "^1.0.0",
"bcryptjs": "^3.0.2",
"gsap": "^3.13.0",
"jose": "^6.0.13",
"lucide-react": "^0.539.0",
"next": "16.0.10",
"postcss": "^8.5.6",
"react": "^19.1.2",
"react-dom": "^19.1.2",
"resend": "^6.0.1",
"shadcn": "^2.10.0",
"sonner": "^2.0.7",
"zod": "^4.0.17"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.12",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^16.0.7",
"prettier": "^3.4.2",
"prisma": "^6.14.0",
"tailwindcss": "^4.1.12",
"tsx": "^4.20.4",
"typescript": "^5"
}
}