-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.19 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.19 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
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
{
"private": true,
"license": "MIT",
"scripts": {
"build": "prisma generate && next build",
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"sanity-start": "sanity start",
"export": "next export",
"postinstall": "prisma generate"
},
"engines": {
"node": "20.x",
"yarn": "1.22.x"
},
"dependencies": {
"@prisma/client": "^5.21.1",
"@prisma/extension-pulse": "^1.2.0",
"@sanity/client": "^6.1.0",
"@sanity/desk-tool": "^2.36.2",
"@sanity/eslint-config-studio": "^2.0.0",
"@sanity/image-url": "^1.0.2",
"@sanity/schema": "^3.62.3",
"@sanity/vision": "^3.23.4",
"@sanity/webhook": "^2.0.0",
"@tailwindcss/typography": "0.5.3",
"classnames": "^2.5.1",
"comma-number": "^2.1.0",
"date-fns": "2.28.0",
"googleapis": "^105.0.0",
"kbar": "^0.1.0-beta.45",
"motion": "^10.12.0",
"next": "^15.0.2",
"next-auth": "^4.24.7",
"next-mdx-remote": "^4.0.3",
"next-sanity": "^5.0.0",
"next-seo": "^5.5.0",
"next-themes": "^0.2.0",
"prisma": "^5.21.1",
"query-string": "^7.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^4.x.x",
"react-type-animation": "^3.2.0",
"sanity": "^3.23.4",
"sanity-plugin-markdown": "^3.0.1",
"sharp": "^0.33.5",
"styled-components": "^5.2.0",
"swr": "1.3.0",
"tailwindcss": "3.1.5",
"use-delayed-render": "^0.0.7",
"yarn": "^1.22.22"
},
"devDependencies": {
"@types/classnames": "^2.3.4",
"@types/hast": "^3.0.4",
"@types/jest": "^29.5.14",
"@types/mdx": "^2.0.13",
"@types/node": "^18.7.3",
"@types/react": "^18.0.15",
"autoprefixer": "10.4.7",
"eslint": "8.19.0",
"eslint-config-next": "12.2.2",
"globby": "13.1.2",
"postcss": "^8.4.13",
"prettier": "2.7.1",
"reading-time": "^1.4.0",
"rehype": "12.0.1",
"rehype-autolink-headings": "6.1.1",
"rehype-code-titles": "1.1.0",
"rehype-prism-plus": "^1.4.2",
"rehype-slug": "5.0.1",
"remark-gfm": "^3.0.1",
"rss": "1.2.2",
"typescript": "^5.0.0"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}