-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.38 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
{
"name": "r3nanp.io",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint '{pages, components}/*.{js,ts,tsx}' --max-warnings=0",
"prepare": "husky install",
"prisma": "dotenv -e .env.local -- prisma",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"sanity:build": "sanity build",
"sanity:dev": "sanity dev",
"sanity:start": "sanity start",
"sanity:deploy": "npx @sanity/cli deploy",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@headlessui/react": "^1.7.2",
"@heroicons/react": "^2.0.11",
"@next-auth/prisma-adapter": "^1.0.4",
"@portabletext/react": "^1.0.6",
"@prisma/client": "4.4.0",
"@radix-ui/react-tooltip": "^1.0.0",
"@sanity/image-url": "^1.0.1",
"@sanity/vision": "^3.2.4",
"@tanstack/react-query": "^4.22.0",
"@trpc/client": "^10.9.0",
"@trpc/next": "^10.9.0",
"@trpc/react-query": "^10.9.0",
"@trpc/server": "^10.9.0",
"@vercel/og": "^0.0.27",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"kbar": "^0.1.0-beta.36",
"next": "12.3.0",
"next-auth": "^4.18.8",
"next-mdx-remote": "^4.1.0",
"next-sanity": "^0.8.4",
"next-seo": "^5.5.0",
"next-sitemap": "^3.1.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"reading-time": "^1.5.0",
"rss": "^1.2.2",
"sanity": "^3.2.4",
"sanity-plugin-markdown": "^3.0.1",
"styled-components": "^5.3.5",
"superjson": "^1.10.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.7",
"@types/node": "18.7.18",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@types/rss": "^0.0.29",
"autoprefixer": "^10.4.11",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^6.0.0",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "12.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-prisma": "^4.4.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.4.0",
"tailwindcss": "^3.1.8",
"typescript": "4.8.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}