-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.53 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
{
"name": "sentinel",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "node scripts/prisma-generate-safe.mjs",
"dev": "next dev",
"build": "node scripts/prisma-generate-safe.mjs && next build --webpack",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"verify": "npm run typecheck && npm run lint && npm run test:run",
"verify:ci": "npm run verify",
"postinstall": "prisma generate",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:verify-canonical-stages": "node scripts/verify-canonical-stages.mjs"
},
"dependencies": {
"@clerk/nextjs": "^6.39.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/material": "^7.3.7",
"@mui/x-charts": "^8.24.0",
"@prisma/client": "^6.0.0",
"@react-three/fiber": "^9.0.0-alpha.8",
"@sentry/nextjs": "^10.36.0",
"@tabler/icons-react": "^3.36.1",
"@upstash/redis": "^1.36.1",
"clsx": "^2.1.1",
"cobe": "^0.6.5",
"date-fns": "^3.6.0",
"dotted-map": "^2.2.3",
"framer-motion": "^12.29.0",
"jspdf": "^4.0.0",
"motion": "^12.40.0",
"next": "16.1.1",
"next-swagger-doc": "^0.4.1",
"next-themes": "^0.4.6",
"pdf-parse": "^1.1.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hotkeys-hook": "^5.2.3",
"react-markdown": "^10.1.0",
"resend": "^6.8.0",
"sonner": "^2.0.7",
"swagger-ui-react": "^5.31.0",
"tailwind-merge": "^3.4.0",
"three": "^0.182.0",
"three-globe": "^2.45.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@next/swc-wasm-nodejs": "^16.1.1",
"@playwright/test": "^1.58.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.182.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.18",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"jsdom": "^27.4.0",
"prisma": "^6.0.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.0.18",
"vitest-mock-extended": "^3.1.0"
}
}