-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.4 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
{
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"db:seed": "prisma db seed"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@octokit/rest": "^21.1.0",
"@prisma/client": "^6.3.1",
"contentlayer": "^0.3.4",
"next": "15.1.7",
"next-contentlayer": "^0.3.4",
"next-intl": "^3.26.3",
"next-themes": "^0.4.4",
"plaiceholder": "^3.0.0",
"prisma": "^6.3.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.2",
"react-use": "^17.6.0",
"reading-time": "^1.5.0",
"rehype-pretty-code": "^0.14.0",
"sharp": "0.33.5",
"shiki": "^2.3.2",
"shikiji": "^0.10.2",
"swr": "^2.3.2",
"timeago.js": "^4.0.2",
"yup": "^1.6.1"
},
"devDependencies": {
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "19.0.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.20.1",
"eslint-config-next": "15.1.7",
"postcss": "^8.5.2",
"prettier": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"prettier": {
"singleQuote": true,
"jsxSingleQuote": true,
"tabWidth": 2,
"printWidth": 120,
"trailingComma": "none",
"useTabs": false,
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}