-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.3 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.3 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
{
"name": "michaeluloth.com",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"cache:clear": "trash .next && trash .local-cache",
"cache:clear:cloudinary": "trash .local-cache/cloudinary",
"cache:clear:itunes": "trash .local-cache/itunes",
"cache:clear:next": "trash .next",
"cache:clear:notion": "trash .local-cache/notion",
"cache:clear:tmdb": "trash .local-cache/tmdb",
"deploy:preview": "npm run build && npx wrangler pages deploy out --project-name=michaeluloth --commit-dirty=true",
"deploy:production": "bash io/cloudflare/deploy-production-check.sh && npm run build && npx wrangler pages deploy out --project-name=michaeluloth --branch=main",
"dev": "next dev",
"format": "prettier --write .",
"generate:og-image": "tsx seo/generate-og-image.tsx",
"lighthouse": "lhci autorun || (tsx ci/lighthouse/parse-errors.ts && exit 1)",
"prelighthouse": "tsx ci/lighthouse/generate-urls.ts",
"lint": "eslint",
"notify:ci": "tsx ci/notifications/notify-build-status.ts",
"start": "next start",
"test": "vitest",
"test:ci": "vitest run",
"test:metadata": "tsx ci/metadata/validate.ts",
"test:ui": "vitest --ui",
"typecheck": "tsc"
},
"dependencies": {
"@giscus/react": "^3.1.0",
"@notionhq/client": "^5.3.0",
"cloudinary": "^2.8.0",
"feed": "^5.1.0",
"next": "^16.0.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"rehype-pretty-code": "^0.14.1",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"timeago.js": "^4.0.2",
"zod": "^4.1.13"
},
"devDependencies": {
"@lhci/cli": "^0.15.1",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^20.19.27",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/ui": "^4.0.15",
"cheerio": "^1.1.2",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"eslint-config-prettier": "^10.1.8",
"happy-dom": "^20.0.11",
"prettier": "^3.6.2",
"satori": "^0.18.3",
"sharp": "^0.34.5",
"shiki": "^3.15.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"turbopack-inline-svg-loader": "^1.0.2",
"typescript": "^5",
"vitest": "^4.0.15"
}
}