-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.01 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.01 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
{
"name": "tika",
"version": "0.1.0",
"private": true,
"description": "Tika - Ticket-based Kanban Board TODO App",
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx src/db/seed.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.3.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@google/genai": "^1.49.0",
"@vercel/blob": "^2.3.3",
"@vercel/postgres": "^0.10.0",
"drizzle-orm": "^0.38.0",
"lucide-react": "^0.577.0",
"next": "^15.1.0",
"next-auth": "^5.0.0-beta.30",
"pg": "^8.18.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"resend": "^6.9.3",
"swr": "^2.4.1",
"zod": "^3.24.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.0",
"@types/node": "^22.0.0",
"@types/pg": "^8.16.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.30.0",
"eslint": "^9.0.0",
"eslint-config-next": "^15.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.0",
"prettier": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.0",
"react-grab": "^0.1.25",
"tailwindcss": "^4.0.0",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}