-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.88 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
{
"name": "teamsync",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"lint": "eslint . --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"db:push": "prisma db push",
"db:seed": "node prisma/seed.js",
"db:studio": "prisma studio"
},
"dependencies": {
"@auth/prisma-adapter": "^2.0.0",
"@dnd-kit/core": "^6.1.0",
"@farfetched/core": "^0.11.0",
"@hookform/resolvers": "^5.4.0",
"@libsql/client": "^0.8.1",
"@prisma/adapter-libsql": "^5.22.0",
"@prisma/client": "^5.22.0",
"@tanstack/react-query": "^5.56.0",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.0",
"effector": "^23.2.0",
"effector-react": "^23.2.0",
"lucide-react": "^1.17.0",
"next": "^15.5.19",
"next-auth": "^5.0.0-beta.22",
"patronum": "^2.1.0",
"prisma": "^5.22.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.78.0",
"recharts": "^2.12.0",
"tailwind-merge": "^2.4.0",
"uuid": "^14.0.1",
"zod": "^3.22.0"
},
"devDependencies": {
"@playwright/test": "^1.47.0",
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^2.1.9",
"autoprefixer": "^10.4.0",
"eslint": "^8.57.0",
"eslint-config-next": "^15.5.19",
"jsdom": "^24.0.0",
"msw": "^2.14.6",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.7.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
}
}