-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.47 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.47 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
{
"name": "rethlab",
"version": "0.1.0",
"private": true,
"license": "SEE LICENSE AND LICENSE-CONTENT",
"scripts": {
"dev": "next dev -p 3000",
"prebuild": "prisma generate && prisma db push --accept-data-loss",
"build": "next build",
"start": "next start -p 3000",
"lint": "eslint src/ --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"postinstall": "prisma generate",
"test": "vitest run",
"test:watch": "vitest",
"build:ja-ebook": "tsx prisma/scripts/build-ja-ebook.ts",
"seed:upsert": "tsx prisma/seed-upsert.ts"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@hookform/resolvers": "^3.3.4",
"@monaco-editor/react": "^4.6.0",
"@prisma/client": "^6.3.0",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-query": "^5.90.16",
"@vercel/analytics": "^1.6.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "^3.6.0",
"framer-motion": "^12.23.26",
"katex": "^0.17.0",
"lucide-react": "^0.474.0",
"mermaid": "^11.14.0",
"next": "16.1.1",
"next-auth": "5.0.0-beta.30",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hook-form": "^7.49.3",
"react-markdown": "^9.0.1",
"recharts": "^2.10.3",
"rehype-highlight": "^7.0.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"stripe": "^22.1.0",
"tailwind-merge": "^2.2.0",
"tailwindcss": "^3.4.0",
"zod": "^3.22.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.16",
"dotenv": "^17.2.3",
"eslint": "^8.56.0",
"eslint-config-next": "14.1.0",
"postcss": "^8.4.33",
"prisma": "^6.3.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
}
}