-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.14 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
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
{
"name": "kennyelshoff.com",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "pnpm prebuild && next build",
"prebuild": "pnpm db:generate && contentlayer build",
"start": "next start",
"db": "prisma studio",
"db:push": "prisma db push",
"db:generate": "prisma generate",
"db:migrate": "prisma db migrate",
"db:seed": "prisma db seed",
"db:reset": "prisma migrate reset",
"lint": "next lint",
"format": "prettier --write .",
"typecheck": "npx tsc --noEmit",
"lint:fix": "next lint --fix",
"lint:staged": "lint-staged",
"prepare": "node prepare.cjs"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@plaiceholder/next": "^3.0.0",
"@prisma/client": "^5.11.0",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-aspect-ratio": "^1.0.3",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@sindresorhus/slugify": "^2.2.1",
"@stitches/react": "^1.2.8",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"cloudinary": "^2.0.3",
"contentlayer": "^0.3.4",
"esbuild": "^0.18.20",
"framer-motion": "^11.0.14",
"html-escaper": "^3.0.3",
"just-merge": "^3.2.0",
"kbar": "0.1.0-beta.45",
"mdx-bundler": "^9.2.1",
"next": "^14.1.4",
"next-auth": "^4.24.7",
"next-contentlayer": "^0.3.4",
"next-themes": "^0.3.0",
"plaiceholder": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.2",
"sharp": "^0.33.1",
"swr": "^2.2.5",
"unist-util-visit": "^2.0.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.1.4",
"@types/glob": "^8.1.0",
"@types/html-escaper": "^3.0.2",
"@types/node": "^20.11.28",
"@types/react": "18.2.46",
"@types/unsplash-js": "6.3.1",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^8.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prisma": "^5.11.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-prism-plus": "^1.6.3",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"remark-slug": "^7.0.1",
"remark-unwrap-images": "^3.0.1",
"ts-node": "^10.9.2",
"typescript": "5.4.3"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --write"
]
}
}