-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.63 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
{
"name": "yourkitchen-website",
"version": "1.0.0",
"main": "src/index.ts",
"repository": "https://github.com/YourKitchen/yourkitchen-website.git",
"author": "Markus Moltke <makakwastaken@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "next dev --turbopack",
"prebuild": "npx prisma generate",
"build": "next build",
"start": "node build/standalone/server.js",
"lint": "biome format --write --no-errors-on-unmatched . && biome lint --write --no-errors-on-unmatched .",
"prisma:update": "prisma format && prisma generate && prisma db push",
"analyze": "cross-env ANALYZE=true next build",
"prepare": "husky install",
"typescript:check": "tsc --noEmit",
"translate": "npx tsx ./scripts/translate-site.mts"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "biome format --write --no-errors-on-unmatched",
"*.{js,jsx,ts,tsx|json}": "biome lint --write --no-errors-on-unmatched"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.1",
"@gradio/client": "^2.0.4",
"@mui/base": "^5.0.0-beta.70",
"@mui/icons-material": "^7.3.7",
"@mui/material": "^7.3.7",
"@mui/material-nextjs": "^7.3.7",
"@mui/system": "^7.3.7",
"@mui/x-date-pickers": "^8.27.0",
"@next/bundle-analyzer": "^16.1.6",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"@vercel/analytics": "^1.6.1",
"@vercel/blob": "^2.2.0",
"accept-language": "^3.0.20",
"axios": "^1.13.5",
"framer-motion": "^12.34.0",
"fuzzball": "^2.2.3",
"html-recipe-parser": "https://github.com/MakakWasTaken/html-recipe-parser.git#commit=bcc6efc8156f8e1f3f9ce2c2079d0c137d21fdcd",
"luxon": "^3.7.2",
"next": "^16.1.6",
"next-auth": "^5.0.0-beta.30",
"next-intl": "^4.8.2",
"next-sitemap": "^4.2.3",
"nodemailer": "^8.0.1",
"openai": "^6.18.0",
"pexels": "^1.4.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"styled-components": "^6.3.9",
"swr": "^2.4.0",
"uuid": "^13.0.0",
"vercel": "^50.13.2"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@types/luxon": "^3.7.1",
"@types/node": "25.2.2",
"@types/nodemailer": "^7.0.9",
"@types/react": "19.2.13",
"@types/uuid": "^11.0.0",
"eventsource": "^4.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prisma": "^7.3.0",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.12.0"
}