-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.47 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.47 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
{
"name": "book-by-book",
"version": "0.1.0",
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"private": true,
"scripts": {
"predev": "node scripts/ensure-local-postgres.mjs",
"dev": "next dev",
"build": "next build --webpack",
"hash:adminpw": "node scripts/hash-internal-admin-password.mjs",
"prestart": "node scripts/ensure-local-postgres.mjs",
"start": "next start",
"lint": "eslint",
"test": "NODE_ENV=test vitest run tests/unit",
"test:integration": "NODE_ENV=test vitest run --config vitest.integration.config.ts",
"test:e2e": "NODE_ENV=test playwright test"
},
"dependencies": {
"@tanstack/react-query": "^5.90.21",
"@upstash/redis": "^1.35.6",
"bcryptjs": "^3.0.3",
"lucide-react": "^0.577.0",
"next": "16.1.7",
"next-auth": "^4.24.13",
"pino": "^10.3.1",
"postgres": "^3.4.8",
"react": "19.2.3",
"react-dom": "19.2.3",
"redis": "^5.10.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.2.1",
"@testcontainers/postgresql": "^11.13.0",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-next": "16.1.6",
"msw": "^2.12.13",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}