-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "nononsensecooking",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"prebuild": "npm run generate-recipe-index",
"build": "next build",
"start": "next start",
"new-recipe": "tsx ./scripts/new-recipe.ts",
"generate-recipe-index": "tsx ./scripts/generate-recipe-index.ts",
"check-translations": "tsx ./scripts/check-translations.ts"
},
"dependencies": {
"@mdi/js": "^7.2.96",
"@mdi/react": "^1.6.1",
"clsx": "^2.0.0",
"feed": "^5.0.0",
"fuse.js": "^7.0.0",
"lodash": "^4.17.21",
"next": "15.5.10",
"next-i18next": "^15.0.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"slug": "^11.0.0",
"tsx": "^4.0.0",
"typescript": "^5.8.2",
"yaml": "^2.3.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"@types/inquirer": "^9.0.6",
"@types/react": "19.2.7",
"@types/slug": "^5.0.4",
"autoprefixer": "^10.4.15",
"eslint": "^9.0.0",
"eslint-config-next": "15.5.9",
"inquirer": "^12.5.0",
"nanoid": "^5.0.9",
"postcss": "^8.4.31",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.7.0",
"tailwindcss": "^3.3.3"
},
"overrides": {
"@types/react": "19.2.7"
}
}