-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.36 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.36 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
{
"name": "brennanmoore-nextjs-notion-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze": "ANALYZE=true next build",
"audit-dependencies": "npm audit --audit-level=high --production",
"build": "next build",
"cache:posts": "tsx scripts/cache-posts.ts",
"dev": "next dev",
"format": "prettier --write \"{src,__tests__,scripts}/**/*.{ts,tsx,js,css}\"",
"format:check": "prettier --list-different \"{src,__tests__,scripts}/**/*.{ts,tsx,js,css}\"",
"lint": "next lint",
"lint-fix": "next lint --fix",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@notionhq/client": "4.0.1",
"@radix-ui/react-label": "2.1.7",
"@radix-ui/react-slot": "1.2.3",
"@types/react-syntax-highlighter": "15.5.13",
"@vercel/analytics": "1.5.0",
"@vercel/speed-insights": "1.2.0",
"axios": "1.11.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"express": "5.1.0",
"lucide-react": "0.537.0",
"next": "15.4.6",
"next-secure-headers": "2.2.0",
"next-themes": "0.4.6",
"notion-to-md": "3.1.9",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-markdown": "10.1.0",
"react-syntax-highlighter": "15.6.1",
"rehype-raw": "7.0.0",
"remark-gfm": "4.0.1",
"sitemap": "8.0.0",
"slugify": "1.6.6",
"tailwind-merge": "3.3.1",
"tailwindcss": "4"
},
"devDependencies": {
"@tailwindcss/postcss": "4",
"@tailwindcss/typography": "0.5.16",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.6.4",
"@testing-library/react": "16.3.0",
"@trivago/prettier-plugin-sort-imports": "5.2.2",
"@types/express": "5.0.3",
"@types/node": "24.2.0",
"@types/react": "19.1.9",
"@types/react-dom": "19.1.7",
"@typescript-eslint/parser": "8.39.0",
"@vitejs/plugin-react": "4.7.0",
"@vitest/ui": "3.2.4",
"dotenv": "17.2.1",
"eslint": "9.32.0",
"eslint-config-next": "15.4.6",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.4",
"prettier": "3.6.2",
"tsx": "4.20.3",
"typescript": "5.9.2",
"typescript-eslint": "8.39.0",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4"
},
"engines": {
"node": "22.x"
}
}