-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.59 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.59 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
{
"name": "poleapp",
"version": "0.15.3",
"private": true,
"scripts": {
"prebuild": "prisma generate",
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"db:schema:ensure": "node scripts/ensure-schema.js",
"db:push": "node scripts/ensure-schema.js && prisma db push --schema prisma/schema.prisma",
"db:seed": "tsx prisma/seed.ts",
"db:reset:schema": "node scripts/reset-schema.js",
"db:migrate:deploy": "node scripts/ci-migrate-deploy.js",
"db:baseline:render": "echo \"baseline not required (init migration)\"",
"start:render": "node scripts/start-auto.js render",
"start:dev": "node scripts/start-auto.js dev"
},
"dependencies": {
"@prisma/client": "^6.2.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.5.1",
"clsx": "^2.1.1",
"next": "16.1.0",
"next-auth": "^4.24.13",
"nodemailer": "^7.0.12",
"react": "19.2.3",
"react-dom": "19.2.3",
"zod": "^4.2.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/nodemailer": "^6.4.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.0",
"@next/bundle-analyzer": "16.1.0",
"jsdom": "^26.0.0",
"prisma": "^6.2.0",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"typescript": "^5",
"vitest": "^3.0.5"
}
}