-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.49 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.49 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "jameswalsh.dev",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=v22.15.0"
},
"type": "module",
"packageManager": "pnpm@10.11.0",
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"next lint --fix",
"pnpm format"
],
"*.md": "prettier --list-different"
},
"scripts": {
"dev": "next dev --port=3000",
"dev:force": "rm -rf .next && pnpm dev",
"db:migrate": "echo 'no migrations yet'",
"build": "next build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "next lint",
"lint:fix": "pnpm lint --fix",
"precommit": "pnpm spell && pnpm lint-staged",
"prepush": "pnpm typecheck && vitest --run",
"prepare": "husky install",
"preview": "pnpm build && pnpm start",
"start": "next start",
"spell": "cspell",
"test:unit": "vitest",
"test:unit:ci": "vitest --run --coverage",
"test:e2e:open": "playwright test --headed",
"test:e2e:run": "playwright test",
"test:e2e:ui": "playwright test --ui",
"typecheck": "tsc --pretty"
},
"dependencies": {
"@radix-ui/react-accordion": "1.2.11",
"@radix-ui/react-aspect-ratio": "1.1.7",
"@radix-ui/react-avatar": "1.1.10",
"@radix-ui/react-dialog": "1.1.14",
"@radix-ui/react-dropdown-menu": "2.1.15",
"@radix-ui/react-label": "2.1.7",
"@radix-ui/react-navigation-menu": "1.2.13",
"@radix-ui/react-separator": "1.1.7",
"@radix-ui/react-slot": "1.2.3",
"@radix-ui/react-tooltip": "1.2.7",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"front-matter": "4.0.2",
"geist": "1.4.2",
"lucide-react": "0.562.0",
"neverthrow": "8.2.0",
"next": "15.4.10",
"next-mdx-remote": "5.0.0",
"next-themes": "0.4.6",
"posthog-js": "1.310.1",
"posthog-node": "4.18.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"rss": "1.2.2",
"sharp": "0.34.2",
"shiki": "3.4.2",
"tailwind-merge": "3.3.1"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/eslintrc": "3.3.1",
"@next/eslint-plugin-next": "15.3.4",
"@playwright/test": "1.57.0",
"@tailwindcss/postcss": "4.1.11",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/node": "22.7.5",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.5",
"@types/rss": "0.0.32",
"@typescript-eslint/parser": "8.33.1",
"@vitejs/plugin-react": "4.6.0",
"@vitest/coverage-istanbul": "4.0.16",
"commitlint": "19.8.1",
"cspell": "8.15.1",
"eslint": "9.38.0",
"eslint-config-next": "15.3.5",
"eslint-config-prettier": "10.1.5",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.5.1",
"eslint-plugin-react-hooks": "5.2.0",
"happy-dom": "20.0.11",
"husky": "8.0.3",
"lint-staged": "16.1.2",
"msw": "2.10.2",
"postcss": "8.5.6",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "0.6.12",
"rehype": "13.0.2",
"rehype-autolink-headings": "7.1.0",
"rehype-pretty-code": "0.14.1",
"rehype-slug": "6.0.0",
"remark-gfm": "4.0.1",
"tailwindcss": "4.1.16",
"tailwindcss-animate": "1.0.7",
"tw-animate-css": "1.4.0",
"typescript": "5.8.3",
"vite-tsconfig-paths": "6.0.3",
"vitest": "4.0.16"
}
}