-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.22 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
{
"name": "open-recipe-viewer",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"sync": "node scripts/sync-library.mjs",
"build-search-index": "node scripts/build-search-index.mjs",
"dev": "vite",
"build": "node scripts/sync-library.mjs && node scripts/build-search-index.mjs && tsc -b && vite build && node scripts/prerender.mjs && node scripts/sitemap.mjs",
"preview": "vite preview",
"lint": "eslint ."
},
"dependencies": {
"@fontsource/source-sans-3": "^5.2.5",
"@resvg/resvg-js": "^2.6.2",
"minisearch": "^7.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-router-dom": "^6.30.0",
"satori": "^0.26.0"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@tailwindcss/vite": "^4.1.4",
"@types/node": "^22.14.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"dotenv": "^17.4.1",
"eslint": "^9.22.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"tailwindcss": "^4.1.4",
"typescript": "~5.7.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.2.2"
}
}