-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (104 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (104 loc) · 3.05 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
{
"name": "sentry-changelog",
"version": "1.0.0",
"description": "The Sentry changelog application",
"main": "index.js",
"repository": "https://github.com/getsentry/sentry-changelog",
"author": "getsentry",
"license": "FSL-1.1-Apache-2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest",
"test:run": "vitest run",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"db:seed": "tsx src/server/db/seed.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"changelog:validate": "node scripts/changelog/validate.mjs",
"changelog:sync": "tsx scripts/changelog/sync.ts",
"prepare": "simple-git-hooks"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "biome check --write --no-errors-on-unmatched"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.2",
"@paralleldrive/cuid2": "^3.3.0",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-toolbar": "^1.1.11",
"@radix-ui/themes": "^3.3.0",
"@sentry/nextjs": "^10.52.0",
"@spotlightjs/spotlight": "^2.13.3",
"@vercel/blob": "^2.4.0",
"drizzle-orm": "^0.45.2",
"import-in-the-middle": "^1.15.0",
"js-yaml": "^4.1.1",
"next": "^16.2.6",
"next-auth": "^4.24.14",
"next-mdx-remote": "^6.0.0",
"next-plausible": "^3.12.5",
"nextjs-toploader": "^1.6.12",
"nuqs": "^2.8.9",
"pg": "^8.21.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-select": "^5.10.2",
"react-textarea-autosize": "^8.5.9",
"rehype-prism-plus": "^1.6.3",
"rehype-slug": "^6.0.0",
"require-in-the-middle": "^7.5.2",
"rss": "^1.2.2",
"sass": "^1.99.0",
"textarea-markdown-editor": "^1.0.4",
"unified": "10.1.2",
"unist-util-visit": "4.1.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@types/hast": "^3.0.4",
"@types/js-yaml": "^4.0.9",
"@types/mdast": "^4.0.4",
"@types/node": "^20.19.39",
"@types/pg": "^8.20.0",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"@types/rss": "^0.0.32",
"@types/unist": "^3.0.3",
"@vitejs/plugin-react": "^5.2.0",
"autoprefixer": "^10.5.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.4",
"drizzle-kit": "^0.31.10",
"lint-staged": "^15.5.2",
"postcss": "^8.5.12",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^3.4.19",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
},
"volta": {
"node": "22.16.0",
"pnpm": "10.27.0"
},
"engines": {
"node": "^22.0.0"
},
"packageManager": "pnpm@10.27.0",
"resolutions": {
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
}
}