-
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) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.34 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": "v-prop",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run prisma:generate && next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "npm run prisma:generate && tsc --noEmit --incremental false -p tsconfig.typecheck.json",
"format": "prettier --write .",
"screenshots:guide": "tsx scripts/screenshots.ts",
"verify:admin-leads": "tsx scripts/verify-admin-leads.ts",
"verify:lead-enquiry-form": "tsx scripts/verify-lead-enquiry-form.ts",
"verify:listing-images": "tsx scripts/verify-listing-images.ts",
"verify:search-control-labels": "tsx scripts/verify-search-control-labels.ts",
"verify:vhembe-locations": "tsx scripts/verify-vhembe-location-hierarchy.ts",
"sellers-guide:pdf": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/run-python.ps1 scripts/exportSellersGuidePdf.py",
"db:postgres:up": "docker compose -f compose.postgres.yml --env-file .env.postgres.local up -d",
"db:postgres:down": "docker compose -f compose.postgres.yml --env-file .env.postgres.local down",
"db:postgres:reset": "docker compose -f compose.postgres.yml --env-file .env.postgres.local down -v && docker compose -f compose.postgres.yml --env-file .env.postgres.local up -d",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:preview-refresh:apply": "tsx scripts/prisma-preview-refresh.ts --apply",
"prisma:preview-refresh:dry-run": "tsx scripts/prisma-preview-refresh.ts",
"prisma:preview-refresh:inspect": "tsx scripts/inspect-preview-refresh.ts",
"prisma:validate": "prisma validate",
"prisma:seed": "prisma db seed",
"test:preview-refresh": "tsx scripts/test-preview-refresh.ts"
},
"dependencies": {
"@prisma/client": "^6.16.0",
"bcryptjs": "^3.0.3",
"next": "16.1.6",
"prisma": "^6.16.0",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"prettier": "^3.8.1",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}