-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.06 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
{
"name": "eng-copilot",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "if [ \"$VERCEL\" = \"1\" ]; then npm run build:vercel; else next build; fi",
"build:vercel": "prisma generate && prisma db push --accept-data-loss && npm run db:seed && next build",
"start": "next start",
"lint": "eslint . && npm run lint:theme",
"lint:theme": "node scripts/check-theme-colors.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"build:clipper": "node scripts/build-clipper-extension.mjs",
"backfill:render-projection-v2": "tsx scripts/backfill-render-projection-v2.ts",
"backfill:document-source-fields": "tsx scripts/backfill-document-source-fields.ts",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "2.11.2",
"@prisma/client": "^6.0.0",
"defuddle": "^0.18.1",
"esbuild": "^0.28.0",
"framer-motion": "12.38.0",
"lucide-react": "^0.542.0",
"mdast-util-from-markdown": "^2.0.3",
"mdast-util-to-string": "^4.0.0",
"next": "16.2.4",
"next-auth": "5.0.0-beta.31",
"rate-limiter-flexible": "^11.1.1",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"undici": "7.16.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.55.0",
"@tailwindcss/postcss": "4.2.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.0.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"eslint": "^9.0.0",
"eslint-config-next": "16.2.4",
"jsdom": "^26.1.0",
"postcss": "8.5.10",
"prisma": "^6.0.0",
"tailwindcss": "4.2.4",
"tsx": "^4.20.0",
"typescript": "6.0.2",
"typescript-eslint": "^8.30.0",
"vitest": "^3.2.0"
}
}