forked from anthonyshew/maestros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "monorepo-maestros",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"migrate": "dotenv -e .env.local prisma migrate dev",
"spellcheck": "spellchecker --files '**/*.mdx' --dictionaries 'dictionary.txt' --no-suggestions --quiet",
"typecheck": "tsc"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.1",
"@prisma/client": "^5.0.0",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-slot": "^1.0.2",
"@vercel/analytics": "latest",
"@vercel/og": "^0.0.27",
"bright": "^0.8.2",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"contentlayer": "latest",
"date-fns": "^2.30.0",
"encoding": "^0.1.13",
"framer-motion": "^8.5.5",
"lucide-react": "^0.108.0",
"next": "canary",
"next-auth": "^4.22.1",
"next-contentlayer": "latest",
"next-themes": "^0.2.1",
"react": "latest",
"react-dom": "latest",
"react-wrap-balancer": "^0.4.1",
"rehype-mdx-code-props": "^1.0.0",
"spellchecker-cli": "^6.1.1",
"tailwind-merge": "^1.13.2",
"tailwindcss-animate": "^1.0.6"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^20.3.3",
"@types/react": "^18.2.14",
"autoprefixer": "^10.4.14",
"dotenv-cli": "^7.2.1",
"eslint": "latest",
"eslint-config-next": "latest",
"postcss": "^8.4.24",
"prisma": "^5.0.0",
"tailwindcss": "^3.3.2",
"typescript": "latest"
},
"engines": {
"node": "18"
}
}