-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.6 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.6 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "church-volunteer-app",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "bun@1.3.5",
"scripts": {
"dev": "next dev",
"build": "turbo run build:next",
"build:next": "if [ -n \"$VERCEL\" ]; then cp prisma/schema-prod.prisma prisma/schema.prisma; elif [ -n \"$PRISMA_DATABASE_URL\" ]; then cp prisma/schema-prod.prisma prisma/schema.prisma; else cp prisma/schema-local.prisma prisma/schema.prisma; fi && bunx prisma generate && next build",
"start": "next start",
"lint": "turbo run lint:check",
"lint:check": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write .",
"format:check": "turbo run format:run",
"format:run": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest --config vitest.unit.config.ts",
"test:unit": "turbo run test:unit:run",
"test:unit:run": "vitest --config vitest.unit.config.ts",
"test:integration": "vitest --config vitest.config.ts --run src/__tests__/integration/",
"test:all": "vitest --config vitest.config.ts",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:bdd": "bunx cucumber",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:smoke": "bunx tsx scripts/smoke-test.ts",
"test:validate": "bunx tsx scripts/validate-test-data.ts",
"validate:api": "bunx tsx scripts/validate-api-dependencies.ts",
"test:preview": "bunx tsx scripts/enhanced-preview-testing.ts",
"pre-push": "bunx tsx scripts/pre-push-validation.ts",
"postinstall": "POSTGRES_URL=\"$(grep POSTGRES_URL .env.local 2>/dev/null | cut -d '=' -f2- || echo '')\" bunx prisma generate || echo 'Prisma generate skipped (no POSTGRES_URL)'",
"contract:init": "bunx tsx scripts/contract-first-dev.ts init",
"contract:validate": "bunx tsx scripts/contract-first-dev.ts validate",
"contract:mock": "bunx tsx src/generated/mock-server.ts",
"contract:generate": "bunx tsx scripts/generate-api-contracts.ts",
"setup:db": "./scripts/setup-db.sh",
"validate:deployment": "bunx tsx scripts/validate-deployment.ts",
"db:push": "bunx prisma db push",
"db:studio": "bunx prisma studio",
"db:migrate:staging": "USE_POSTGRES=true bunx prisma migrate dev",
"db:migrate:prod": "USE_POSTGRES=true bunx prisma migrate deploy",
"db:docker:up": "docker compose up -d",
"db:docker:down": "docker compose down"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/adapter-better-sqlite3": "^7.2.0",
"@prisma/extension-accelerate": "^3.0.1",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@sentry/nextjs": "^10.32.1",
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.554.0",
"next": "16.0.10",
"next-auth": "^4.24.13",
"next-themes": "^0.4.6",
"prisma": "^7.2.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tsx": "^4.21.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@axe-core/react": "^4.11.0",
"@cucumber/cucumber": "^12.5.0",
"@playwright/test": "^1.57.0",
"@prisma/adapter-libsql": "^7.2.0",
"@prisma/adapter-pg": "^7.2.0",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/jsdom": "^27.0.0",
"@types/node": "^20.19.27",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "4.0.13",
"axe-playwright": "^2.2.2",
"better-sqlite3": "12.5.0",
"eslint": "^9.39.2",
"eslint-config-next": "16.0.7",
"happy-dom": "^20.0.11",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"pino": "^9.14.0",
"pino-http": "^10.5.0",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.18",
"ts-node": "^10.9.2",
"turbo": "^2.7.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"trustedDependencies": [
"@sentry/cli",
"unrs-resolver"
]
}