-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.43 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
{
"name": "prism-journal",
"version": "2.46.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"db:generate": "prisma generate",
"test": "npx vitest",
"test:run": "npx vitest run",
"test:coverage": "npx vitest run --coverage",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"type-check": "tsc --noEmit",
"db:reset": "prisma migrate reset"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1038.0",
"@hookform/resolvers": "^5.2.2",
"@prisma/adapter-pg": "^7.6.0",
"@prisma/client": "^6.19.3",
"@tanstack/react-query": "^5.96.1",
"@tiptap/extension-underline": "^3.22.5",
"@tiptap/react": "^3.22.5",
"@tiptap/starter-kit": "^3.22.5",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"dayjs": "^1.11.20",
"echarts": "^6.0.0",
"framer-motion": "^12.38.0",
"ioredis": "^5.10.1",
"lucide-react": "^1.7.0",
"next": "^16.2.2",
"next-auth": "^5.0.0-beta.30",
"openai": "^6.33.0",
"otplib": "^13.4.0",
"pg": "^8.20.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"playwright": "^1.59.0",
"qrcode": "^1.5.4",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.72.0",
"recharts": "^3.8.1",
"resend": "^6.10.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"use-debounce": "^10.1.1",
"web-push": "^3.6.7",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@playwright/test": "^1.59.0",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bcryptjs": "^3.0.0",
"@types/node": "^25.5.0",
"@types/pg": "^8.20.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/web-push": "^3.6.4",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"autoprefixer": "^10.4.27",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.2",
"jsdom": "^29.0.1",
"postcss": "^8.5.8",
"prisma": "^6.19.3",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
}
}