-
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) · 1.85 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.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
{
"name": "studio42-main-website",
"version": "0.1.0",
"description": "Premium SaaS product showcase and marketing website for Studio42.dev",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:all": "npm run test && npm run test:e2e",
"db:migrate": "prisma migrate dev",
"db:seed": "prisma db seed",
"db:reset": "prisma migrate reset",
"db:generate": "prisma generate",
"db:studio": "prisma studio"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@prisma/client": "^5.7.0",
"bcryptjs": "^2.4.3",
"date-fns": "^2.30.0",
"groq-sdk": "^0.7.0",
"next": "^16.0.0",
"next-auth": "^5.0.0-beta.30",
"nodemailer": "^6.9.7",
"openai": "^4.20.0",
"prisma": "^5.7.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.48.2",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@playwright/test": "^1.41.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.11.0",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"dotenv": "^17.2.3",
"eslint": "^8.56.0",
"eslint-config-next": "^16.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"playwright": "^1.41.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}