-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.79 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
{
"name": "sofra",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"start:standalone": "node scripts/start-standalone.mjs",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "playwright test",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"test:e2e:full": "bash scripts/e2e-suite.sh",
"test:e2e:staging": "E2E_REMOTE=1 E2E_BASE_URL=https://staging.sofrapiwas.com playwright test tests/e2e/staging-live.spec.ts"
},
"dependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@sentry/nextjs": "^10.64.0",
"bcryptjs": "^3.0.3",
"next": "^15.5.21",
"next-auth": "^5.0.0-beta.32",
"next-intl": "^4.3.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^26.1.1",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.39.4",
"eslint-config-next": "^15.5.20",
"postcss": "^8.5.23",
"prisma": "^7.8.0",
"sharp": "^0.35.0",
"tailwindcss": "^4.3.2",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
},
"overrides": {
"deepmerge-ts": "^8.0.1",
"postcss": "^8.5.23",
"@hono/node-server": "^2.0.5",
"fast-uri": "^3.1.6",
"sharp": "^0.35.0",
"brace-expansion": "^5.0.8",
"@auth/core": "^0.41.3",
"valibot": "^1.4.2",
"mysql2": "^3.22.0",
"browserslist": "^4.28.7"
}
}