-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
{
"name": "website",
"version": "0.0.1",
"author": "Lukáš Huvar <[email protected]>",
"scripts": {
"build": "prisma generate && contentlayer build && next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"generate": "prisma generate",
"prepare": "husky install"
},
"engines": {
"node": "20.x.x"
},
"license": "MIT",
"prettier": {
"semi": false,
"singleQuote": true,
"importOrder": [
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,html,json,yml,css,less,scss,md,mdx,graphql}": "prettier --write"
},
"dependencies": {
"@chakra-ui/react": "2.10.3",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@heroicons/react": "2.1.5",
"@pothos/core": "4.3.0",
"@pothos/plugin-simple-objects": "4.1.0",
"@prisma/client": "5.21.1",
"@vercel/analytics": "1.3.2",
"@vercel/og": "0.6.3",
"contentlayer": "0.3.4",
"date-fns": "3.6.0",
"framer-motion": "11.11.10",
"graphql": "16.9.0",
"graphql-yoga": "5.7.0",
"gray-matter": "4.0.3",
"next": "14.2.21",
"next-contentlayer": "0.3.4",
"next-seo": "6.6.0",
"nexus": "1.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"reading-time": "1.5.0",
"rehype-autolink-headings": "6.1.1",
"rehype-pretty-code": "0.10.1",
"rehype-slug": "6.0.0",
"remark-gfm": "3.0.1",
"shiki": "0.14.7",
"swr": "2.2.5"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/node": "20.17.2",
"@types/react": "18.3.12",
"eslint": "8.57.1",
"eslint-config-next": "14.2.16",
"husky": "8.0.3",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"prisma": "5.21.1",
"typescript": "5.6.3"
}
}