-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 928 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 928 Bytes
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
{
"private": true,
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "node scripts/generate-cook-manifest.mjs && next dev --turbo",
"build": "node scripts/generate-cook-manifest.mjs && next build --turbo",
"start": "node scripts/generate-cook-manifest.mjs && next start --turbo",
"generate": "node scripts/generate-cook-manifest.mjs"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/indie-flower": "^5.0.11",
"@mui/joy": "^5.0.0-beta.52",
"cooklang-parser": "^0.0.3",
"eslint-config-next": "15.5.15",
"next": "15.5.15",
"react": "19.1.0",
"react-dom": "19.1.0",
"server-only": "^0.0.1",
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/node": "20.5.9",
"@types/react": "19.1.6",
"raw-loader": "^4.0.2",
"typescript": "5.2.2"
},
"overrides": {
"@types/react": "19.1.6"
}
}