This repository was archived by the owner on Apr 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.02 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.02 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
{
"name": "KuroManga",
"version": "0.37.2",
"private": true,
"packageManager": "pnpm@10.26.1",
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build --webpack",
"build:azure": "prisma generate && BUILD_TARGET=azure next build --webpack && node scripts/inject-sw-version.mjs",
"build:cf": "prisma generate && opennextjs-cloudflare build",
"preview:cf": "opennextjs-cloudflare preview",
"deploy:cf": "opennextjs-cloudflare deploy",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:report": "playwright show-report",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:generate": "prisma generate",
"db:studio": "prisma studio",
"seed": "tsx scripts/seed-initial.ts",
"sync": "curl -X POST http://localhost:3000/api/sync/latest",
"prepare": "husky"
},
"dependencies": {
"@clerk/nextjs": "^6.37.1",
"@clerk/themes": "^2.4.51",
"@next/env": "16.1.7",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"@swc/helpers": "0.5.15",
"@tanstack/react-query": "^5.90.20",
"applicationinsights": "^3.14.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.563.0",
"next": "16.1.7",
"next-themes": "^0.4.6",
"pg": "^8.18.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"server-only": "^0.0.1",
"styled-jsx": "5.1.6",
"svix": "^1.84.1",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260317.1",
"@opennextjs/cloudflare": "^1.17.3",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.2.4",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "^7.6.0",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5",
"wrangler": "^4.75.0"
},
"overrides": {
"hono": ">=4.12.4",
"@hono/node-server": ">=1.19.10",
"lodash": ">=4.17.23"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}