-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.68 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
{
"name": "gitdiagram",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "bun run --bun next build",
"check": "bun run lint && bun run typecheck",
"dev": "./scripts/dev-turbo.sh",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"preview": "next build && next start",
"start": "next start",
"quota:today": "bun scripts/complimentary-quota-today.mjs",
"browse:migrate-index": "bun scripts/migrate-browse-index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"perf:budget": "node scripts/check-performance-budgets.mjs"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1100.0",
"@mermaid-js/layout-elk": "^0.2.2",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-switch": "^1.3.7",
"@radix-ui/react-tooltip": "^1.2.16",
"clsx": "^2.1.1",
"dompurify": "^3.4.13",
"geist": "^1.7.2",
"lucide-react": "^1.28.0",
"mermaid": "^11.16.1",
"next": "^16.2.12",
"next-themes": "^0.4.6",
"openai": "^7.2.0",
"posthog-js": "^1.409.4",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"overrides": {
"@babel/core": "7.29.7",
"ajv": "6.15.0",
"brace-expansion": "5.0.9",
"dompurify": "3.4.13",
"esbuild": "0.28.1",
"eslint": "9.39.5",
"flatted": "3.4.2",
"js-yaml": "4.3.1",
"lodash-es": "^4.18.1",
"minimatch@<4": "3.1.5",
"picomatch@<3": "2.3.2",
"postcss": "8.5.26",
"rollup": "4.62.2",
"sharp": "0.35.3",
"undici": "8.10.0",
"vite": "7.3.6",
"uuid": "^11.1.1"
},
"devDependencies": {
"@tailwindcss/postcss": "4.3.3",
"@testing-library/jest-dom": "7.0.0",
"@testing-library/react": "16.3.2",
"@types/jsdom": "28.0.3",
"@types/node": "^26.1.2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"dotenv": "^17.4.2",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.12",
"jsdom": "30.0.1",
"postcss": "^8.5.25",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"redis": "^6.1.0",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"vitest": "4.1.10"
},
"knip": {
"ignoreBinaries": [
"redis-server"
]
},
"engines": {
"bun": ">=1.3.11 <2"
},
"packageManager": "bun@1.3.11",
"patchedDependencies": {
"minimatch@3.1.5": "patches/minimatch@3.1.5.patch"
}
}