-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.61 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
{
"name": "kharko-dozor-dashboard",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.0.0",
"npm": ">=10.9.0"
},
"packageManager": "npm@10.9.3",
"scripts": {
"dev": "next dev --turbopack",
"postinstall": "prisma generate && fumadocs-mdx",
"build": "next build",
"start": "next start",
"lint": "eslint",
"type-check": "tsc --noEmit",
"test:unit": "vitest run --project unit",
"test:contract": "vitest run --project contract",
"test:integration": "vitest run --project integration",
"prepare": "husky"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.2",
"@hookform/resolvers": "^5.2.2",
"@kharko/dozor": "^1.3.2",
"@kharko/dozor-react": "^1.3.1",
"@neondatabase/serverless": "^1.1.0",
"@phosphor-icons/react": "^2.1.10",
"@prisma/adapter-neon": "^7.6.0",
"@prisma/client": "^7.6.0",
"@sentry/nextjs": "^10.50.0",
"@simplewebauthn/browser": "^9.0.1",
"@simplewebauthn/server": "^9.0.3",
"@tanstack/react-query": "^5.95.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fumadocs-core": "^16.8.4",
"fumadocs-mdx": "^14.3.1",
"fumadocs-openapi": "^10.8.0",
"fumadocs-ui": "^16.8.4",
"input-otp": "^1.4.2",
"next": "^16.2.4",
"next-auth": "^5.0.0-beta.31",
"next-intl": "^4.9.1",
"next-themes": "^0.4.6",
"nodemailer": "^8.0.5",
"pino": "^10.3.1",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-hook-form": "^7.72.0",
"rrweb": "2.0.0-alpha.20",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@tailwindcss/postcss": "^4",
"@testcontainers/postgresql": "^11.14.0",
"@types/node": "^25.6.0",
"@types/nodemailer": "^8.0.0",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"babel-plugin-react-compiler": "1.0.0",
"dotenv": "^17.3.1",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.4",
"fast-check": "^4.7.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"pg": "^8.20.0",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "^7.6.0",
"tailwindcss": "^4",
"typescript": "^6.0.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}