-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 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
{
"name": "aetch",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:seed": "prisma db seed",
"dev:check": "bash scripts/dev-check.sh",
"dev:reset": "bash scripts/dev-reset.sh",
"db:reset": "bash scripts/db-reset.sh",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install --with-deps chromium",
"ci:check": "bash scripts/ci-check.sh",
"audit:prod": "npm audit --omit=dev --audit-level=high",
"prepare": "husky || true",
"lint:staged": "lint-staged"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@hookform/resolvers": "^5.2.2",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@tanstack/react-query": "^5.90.21",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"framer-motion": "^12.36.0",
"lucide-react": "^0.577.0",
"meilisearch": "^0.55.0",
"next": "16.1.6",
"next-auth": "^5.0.0-beta.30",
"nodemailer": "^7.0.13",
"openai": "^6.27.0",
"pg": "^8.20.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"prisma": "^7.5.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.71.2",
"sharp": "^0.34.5",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/nodemailer": "^7.0.11",
"@types/pg": "^8.18.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sharp": "^0.31.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"prettier": "^3.8.1",
"tailwindcss": "^4",
"ts-jest": "^29.4.9",
"typescript": "^5"
}
}