-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 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
{
"name": "todal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@supabase/supabase-js": "^2.76.1",
"date-fns": "^2.30.0",
"dotenv": "^17.2.3",
"framer-motion": "^12.23.24",
"lucide-react": "^0.344.0",
"next": "^15.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^3.3.0"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@supabase/ssr": "^0.7.0",
"@tailwindcss/postcss": "^4.1.14",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.16",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.32",
"tailwindcss": "^4.0.0",
"typescript": "^5.3.3"
},
"overrides": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}