-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.49 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
{
"name": "mywebsite-nextjs",
"version": "2.0.0",
"author": "Pietro Bondioli <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "npx prisma generate && next build",
"postbuild": "next-sitemap",
"start": "next start",
"clean": "rimraf .next",
"nuke:install": "rimraf ./node_modules ./package-lock.json",
"lint": "next lint",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install && prisma generate",
"seed": "node prisma/seed.js",
"add-article": "node prisma/scripts/add-article.js",
"add-languages": "node prisma/scripts/add-languages.js"
},
"dependencies": {
"@faker-js/faker": "8.1.0",
"@hookform/resolvers": "3.3.1",
"@libsql/client": "0.6.0",
"@next-auth/prisma-adapter": "1.0.7",
"@prisma/adapter-libsql": "5.12.1",
"@prisma/client": "5.12.1",
"@t3-oss/env-nextjs": "0.6.1",
"@vercel/analytics": "1.0.2",
"body-scroll-lock": "3.1.5",
"gray-matter": "4.0.3",
"highlight.js": "11.8.0",
"i18next": "23.5.1",
"immer": "10.0.3",
"next": "13.5.3",
"next-auth": "4.23.2",
"next-i18next": "14.0.3",
"prisma": "5.12.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.47.0",
"react-i18next": "13.2.2",
"react-icons": "4.11.0",
"react-scroll": "1.8.9",
"react-toastify": "9.1.3",
"rehype-highlight": "7.0.0",
"rehype-raw": "7.0.0",
"rehype-stringify": "10.0.0",
"remark-gfm": "4.0.0",
"remark-parse": "11.0.0",
"remark-rehype": "11.0.0",
"sass": "1.68.0",
"swr": "2.2.4",
"unified": "11.0.3",
"zod": "3.22.2",
"zustand": "4.4.2"
},
"devDependencies": {
"@commitlint/cli": "17.7.2",
"@commitlint/config-conventional": "17.7.0",
"@tailwindcss/forms": "0.5.6",
"@types/body-scroll-lock": "3.1.0",
"@types/node": "20.8.2",
"@types/react": "18.2.24",
"@types/react-scroll": "1.8.8",
"autoprefixer": "10.4.16",
"eslint": "8.50.0",
"husky": "8.0.3",
"next-sitemap": "4.2.3",
"postcss": "8.4.31",
"prettier": "3.0.3",
"rimraf": "5.0.5",
"tailwindcss": "3.3.3",
"ts-node": "10.9.1",
"typescript": "5.2.2"
}
}