-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.29 KB
/
package.json
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
{
"name": "website",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "prisma generate --no-engine && next dev",
"build": "prisma generate --no-engine && next build",
"postinstall": "prisma generate --no-engine",
"start": "next start",
"lint": "next lint",
"studio": "prisma studio",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"check-types": "tsc --noEmit"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@prisma/client": "^5.17.0",
"@prisma/extension-accelerate": "^1.1.0",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@upstash/redis": "^1.33.0",
"@vercel/analytics": "^1.1.1",
"@vercel/og": "^0.6.1",
"@vercel/speed-insights": "^1.0.1",
"axios": "^1.6.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"contentlayer": "^0.3.4",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"framer-motion": "^10.16.16",
"next": "^14.1.4",
"next-contentlayer": "^0.3.4",
"next-themes": "^0.2.1",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-animated-cursor": "^2.11.2",
"react-dom": "^18.2.0",
"react-github-calendar": "^4.3.0",
"react-icons": "^4.12.0",
"react-share-kit": "^1.1.0",
"rehype-pretty-code": "^0.6.0",
"rehype-prism-plus": "^1.6.3",
"rehype-slug": "^6.0.0",
"sharp": "^0.33.0",
"swr": "^2.2.4",
"tailwind-merge": "^2.1.0",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.4",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.10.4",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"autoprefixer": "^10.4.16",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-prettier": "0.0.0-empty",
"postcss": "^8.4.32",
"prettier-plugin-tailwindcss": "^0.5.9",
"prisma": "^5.17.0",
"tailwindcss": "^3.3.6",
"turbo": "^2.1.1",
"typescript": "^5.3.3"
},
"overrides": {
"next-contentlayer": {
"next": "$next"
}
},
"packageManager": "npm@10.8.1"
}