-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.32 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.32 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
{
"name": "brennanmoore-astro-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "astro build",
"check": "astro check",
"dev": "astro dev",
"preview": "astro preview",
"audit-dependencies": "npm audit --audit-level=high --production",
"format": "prettier --write \"{src,__tests__,scripts,.claude,docs}/**/*.{ts,tsx,js,css,md,astro}\"",
"format:check": "prettier --list-different \"{src,__tests__,scripts,docs}/**/*.{ts,tsx,js,css,md,astro}\"",
"knip": "knip",
"knip:fix": "knip --fix",
"lint": "eslint . --ext .ts,.tsx,.astro --max-warnings=0",
"lint:fix": "eslint . --ext .ts,.tsx,.astro --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch",
"test:watch:coverage": "vitest --watch --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@astrojs/react": "4.4.2",
"@astrojs/rss": "4.0.15",
"@astrojs/sitemap": "3.7.0",
"@notionhq/client": "5.7.0",
"@tailwindcss/vite": "4.1.18",
"astro": "5.16.11",
"axios": "1.13.2",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"notion-to-md": "3.1.9",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "10.1.0",
"rehype-raw": "7.0.0",
"remark-gfm": "4.0.1",
"tailwind-merge": "3.4.0",
"tailwindcss": "4.1.18"
},
"devDependencies": {
"@astrojs/check": "0.9.6",
"@tailwindcss/postcss": "4.1.18",
"@tailwindcss/typography": "0.5.19",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.1",
"@trivago/prettier-plugin-sort-imports": "6.0.2",
"@types/node": "25.0.9",
"@types/react": "19.2.8",
"@types/react-dom": "19.2.3",
"@types/react-syntax-highlighter": "15.5.13",
"@vitejs/plugin-react": "5.1.2",
"eslint": "9.39.2",
"eslint-plugin-astro": "1.3.1",
"jsdom": "27.4.0",
"knip": "5.82.1",
"postcss": "8.5.6",
"prettier": "3.8.0",
"prettier-plugin-astro": "0.14.1",
"react-syntax-highlighter": "16.1.0",
"typescript": "5.9.3",
"typescript-eslint": "8.53.1",
"vite-tsconfig-paths": "6.0.4",
"vitest": "4.0.17",
"@vitest/coverage-istanbul": "4.0.17"
},
"engines": {
"node": "24.x"
}
}