-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json5
More file actions
76 lines (76 loc) · 2.65 KB
/
Copy pathpackage.json5
File metadata and controls
76 lines (76 loc) · 2.65 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
{
name: "openblog",
version: "0.1.0",
private: true,
packageManager: "pnpm@11.9.0",
scripts: {
dev: "next dev -p 4000",
build: "next build",
start: "next start",
check: "oxlint -c .oxlintrc.json . && oxfmt . --check && tsgo --noEmit",
"lint:fix": "oxlint -c .oxlintrc.json . --fix",
"format:fix": "oxfmt . --write",
test: "vitest",
"test:unit": "vitest --run",
"test:integration": "vitest --run --config vitest.integration.config.ts",
"test:e2e": "DATABASE_URL=postgresql://postgres:postgres@localhost:5433/openblog_test playwright test --config=e2e.config.ts",
"test:full": "./scripts/test-full.sh",
"build:test": "next build",
"start:test": "DATABASE_URL=postgresql://postgres:postgres@localhost:5433/openblog_test E2E_TESTING=true NEXT_PUBLIC_BASE_URL=http://localhost:3001 DISABLE_RATE_LIMITING=true next start -p 3001",
prisma: "prisma",
"prisma-test": "DATABASE_URL=postgresql://postgres:postgres@localhost:5433/openblog_test prisma",
"db:reset": "(docker ps -q -f name=openblog-db | grep . || docker compose up -d postgres) && pnpm run prisma -- migrate reset --force",
"promote-admin": "tsx scripts/promote-admin.ts",
},
dependencies: {
"@better-auth/prisma-adapter": "^1.5.5",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@prisma/client-runtime-utils": "^7.5.0", // --- Database & ORM --- /* [comment possibly relocated by pnpm] */
"@tailwindcss/typography": "^0.5.19",
"better-auth": "^1.5.5",
dotenv: "^17.3.1",
"isomorphic-dompurify": "^3.5.1",
katex: "^0.16.40",
"lucide-react": "^1.11.0",
marked: "^17.0.5",
next: "16.2.0",
pg: "^8.20.0",
prisma: "^7.5.0",
react: "19.2.4",
"react-dom": "19.2.4",
shiki: "^4.0.2",
},
devDependencies: {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/katex": "^0.16.8",
"@types/node": "^20",
"@types/pg": "^8.18.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/supertest": "^7.2.0",
"@typescript/native-preview": "^7.0.0-dev.20260321.1",
"@vitest/coverage-v8": "^4.1.0",
"@vitest/ui": "^4.1.0",
concurrently: "^9.2.1",
jest: "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
jsdom: "^29.0.1",
msw: "^2.12.14",
oxfmt: "^0.41.0",
oxlint: "^1.56.0",
"oxlint-tsgolint": "^0.17.1",
prettier: "^3.8.1",
supertest: "^7.2.2",
tailwindcss: "^4",
"ts-jest": "^29.4.6",
tsx: "^4.19.0",
typescript: "^5",
vitest: "^4.1.0",
"wait-on": "^9.0.4",
},
}