-
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.43 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.43 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": "github-dashboard",
"version": "0.3.1",
"private": true,
"packageManager": "pnpm@10.30.3",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome lint --error-on-warnings .",
"format:check": "biome check --formatter-enabled true --linter-enabled false",
"lint:md": "markdownlint-cli2",
"lint:tailwind": "pnpm exec tailwindcss --lint --content \"./src/**/*.{js,ts,jsx,tsx}\" --output /dev/null",
"test": "vitest run",
"test:db": "vitest run --config vitest.db.config.ts",
"test:watch": "vitest",
"test:e2e": "playwright test",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"ci": "biome ci --error-on-warnings . && pnpm run typecheck && pnpm run test && pnpm run test:db",
"backfill:ownership": "tsx scripts/backfill-node-ownership.ts",
"migrate:activity-saved-filter-attention": "tsx scripts/migrate-activity-saved-filter-attention.ts"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@primer/octicons-react": "^19.25.0",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"graphql-request": "^7.4.0",
"lucide-react": "^1.14.0",
"luxon": "^3.7.2",
"next": "^16.2.4",
"pg": "^8.20.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-hook-form": "^7.74.0",
"recharts": "^3.8.1",
"sanitize-html": "^2.17.3",
"tailwind-merge": "^3.5.0",
"zod": "^4.4.2"
},
"devDependencies": {
"@next/env": "^16.2.4",
"@playwright/test": "^1.59.1",
"@tailwindcss/cli": "^4.2.4",
"@tailwindcss/postcss": "^4.2.4",
"@testcontainers/postgresql": "^11.14.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/luxon": "^3.7.1",
"@types/node": "^24.12.2",
"@types/pg": "^8.20.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/sanitize-html": "^2.16.1",
"graphql": "^16.13.2",
"jsdom": "^29.1.0",
"markdownlint-cli2": "^0.22.1",
"tailwindcss": "^4.2.4",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=24.0.0 <25.0.0"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}
}