-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.14 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
{
"name": "todo-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@phosphor-icons/react": "^2.1.10",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"next": "^16.2.0",
"next-auth": "^4.24.11",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.53.0",
"react-toastify": "^11.0.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.17.10",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.27",
"eslint": "^10.0.3",
"eslint-config-next": "^16.2.0",
"jsdom": "^25.0.1",
"postcss": "^8.5.8",
"prettier": "^3.3.3",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vitest": "^2.1.2"
}
}