-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
169 lines (169 loc) · 6.85 KB
/
Copy pathpackage.json
File metadata and controls
169 lines (169 loc) · 6.85 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "hexframe",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"check": "next lint && tsc --noEmit",
"db:generate": "drizzle-kit generate --config=./config/drizzle.config.ts",
"db:migrate": "drizzle-kit migrate --config=./config/drizzle.config.ts",
"db:populate": "tsx scripts/populate-db.ts",
"db:push": "drizzle-kit push --config=./config/drizzle.config.ts",
"db:studio": "drizzle-kit studio --config=./config/drizzle.config.ts",
"db:setup": "drizzle-kit push --config=./config/drizzle.config.ts",
"db:create-placeholder-user": "dotenv -e .env -e .env.local -- tsx scripts/create-placeholder-user.ts",
"db:delete": "tsx scripts/delete-database.ts",
"db:find-map-orphans": "dotenv -e .env -e .env.local -- tsx scripts/find-map-orphans.ts",
"db:delete-map-orphans": "dotenv -e .env -e .env.local -- tsx scripts/delete-map-orphans.ts",
"db:find-user-orphans": "dotenv -e .env -e .env.local -- tsx scripts/find-user-orphans.ts",
"db:delete-user-orphans": "dotenv -e .env -e .env.local -- tsx scripts/delete-user-orphans.ts",
"db:pre-migration-cleanup": "dotenv -e .env -e .env.local -- tsx scripts/pre-migration-cleanup-orphans.ts",
"dev": "next dev -H 0.0.0.0",
"format:check": "prettier --config ./config/prettier.config.js --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:write": "prettier --config ./config/prettier.config.js --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"init-db": "tsx scripts/init-db.ts",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:colors": "node scripts/validate-colors.mjs",
"check:architecture": "python3 -m scripts.checks.architecture.main",
"check:architecture:map": "python3 -m scripts.checks.architecture.main src/app/map",
"check:deadcode": "python3 -m scripts.checks.deadcode.main",
"check:ruleof6": "python3 scripts/checks/ruleof6/cli.py",
"check:lint": "python3 scripts/checks/lint/main.py",
"check:lint:verbose": "python3 scripts/checks/lint/main.py --verbose",
"check:lint:errors": "python3 scripts/checks/lint/main.py --errors-only",
"check:quality": "pnpm check:deadcode && pnpm check:architecture && pnpm check:ruleof6 && pnpm check:lint",
"test:checkers": "python3 scripts/checks/run-tests.py",
"lint:all": "pnpm check:lint && pnpm check:quality",
"check:architecture:fix": "node scripts/fix-dependencies.cjs",
"preview": "next build && next start",
"start": "next start",
"typecheck": "tsc --noEmit",
"test": "./scripts/run-tests.sh",
"test:run": "vitest run --config vitest.config.ts",
"test:ui": "vitest --ui --config vitest.config.ts",
"test:coverage": "vitest run --coverage --config vitest.config.ts",
"test:watch": "vitest watch --config vitest.config.ts",
"test:profile": "vitest run --logHeapUsage --config vitest.config.ts",
"youtube": "node scripts/youtube.js",
"youtube:transcript": "tsx src/lib/youtube/get-transcript.ts transcript",
"youtube:analyze": "tsx src/lib/youtube/get-transcript.ts analyze",
"map:build": "dotenv -e .env -e .env.local -- tsx scripts/buildMap.ts",
"map:build:js": "dotenv -e .env -e .env.local -- node scripts/buildMap.js",
"mcp:build": "esbuild src/app/services/mcp/server.ts --bundle --platform=node --target=node20 --outfile=dist/mcp-server.js --format=esm",
"mcp:start": "node dist/mcp-server.js",
"mcp:dev": "tsx src/app/services/mcp/server.ts"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.30",
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^5.1.1",
"@mistralai/mistralai": "^1.5.2",
"@modelcontextprotocol/sdk": "^1.24.3",
"@neondatabase/serverless": "^1.0.1",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-toast": "^1.2.14",
"@t3-oss/env-nextjs": "^0.13.8",
"@tanstack/react-query": "^5.77.2",
"@trpc/client": "^11.0.0-rc.446",
"@trpc/react-query": "^11.0.0-rc.446",
"@trpc/server": "^11.8.0",
"@types/bcryptjs": "^3.0.0",
"@upstash/redis": "^1.35.8",
"@vercel/analytics": "^1.5.0",
"@vercel/sandbox": "^1.0.2",
"bcryptjs": "^3.0.2",
"better-auth": "^1.4.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.0",
"drizzle-orm": "^0.33.0",
"geist": "^1.4.2",
"inngest": "^3.43.1",
"isomorphic-dompurify": "^2.27.0",
"lucide-react": "^0.525.0",
"ms": "^2.1.3",
"mustache": "^4.2.0",
"nanoid": "^5.1.5",
"next": "15.5.9",
"postgres": "^3.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.62.0",
"react-markdown": "^10.1.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"server-only": "^0.0.1",
"sonner": "^2.0.3",
"superjson": "^2.2.1",
"svix": "^1.69.0",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2",
"zod": "^3.25.67"
},
"devDependencies": {
"@mdx-js/react": "^3.1.0",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.14",
"@types/ms": "^2.1.0",
"@types/mustache": "^4.2.6",
"@types/node": "^24.0.13",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/browser": "^2.1.9",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.9",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.24.0",
"esbuild": "^0.25.7",
"eslint": "^9.35.0",
"eslint-config-next": "^15.3.3",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-import": "^2.32.0",
"glob": "^13.0.0",
"jest": "^29.7.0",
"jsdom": "^26.1.0",
"knip": "^5.63.1",
"postcss": "^8.4.39",
"prettier": "^3.7.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwind-scrollbar": "^4.0.2",
"tailwindcss": "^3.4.3",
"tsx": "^4.20.2",
"typescript": "^5.5.3",
"vite": "^5.4.21",
"vitest": "^2.1.9"
},
"ct3aMetadata": {
"initVersion": "7.38.1"
},
"packageManager": "pnpm@8.15.5",
"pnpm": {
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0",
"@babel/runtime@<7.26.10": ">=7.26.10",
"better-auth@<1.4.2": ">=1.4.5",
"js-yaml@<4.1.1": ">=4.1.1",
"vite@>=6.0.0": "5.4.21",
"next@>=15.5.0-canary.0 <15.5.7": ">=15.5.7",
"@modelcontextprotocol/sdk@<1.24.0": ">=1.24.3",
"mdast-util-to-hast@>=13.0.0 <13.2.1": ">=13.2.1"
}
}
}