-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.09 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.09 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
{
"name": "todo-master",
"version": "0.1.0",
"private": true,
"description": "Modern Todo List application with Next.js, custom React components, purple gradient design, and smooth animations",
"author": "Tamar Khuskivadze",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:TamarCoder/todo-master.git"
},
"keywords": [
"nextjs",
"react",
"typescript",
"scss",
"todo-list",
"zustand",
"react-hook-form"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"axios": "^1.13.2",
"lucide-react": "^0.562.0",
"next": "16.1.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.69.0",
"react-icons": "^5.5.0",
"sass": "^1.97.1",
"yup": "^1.7.1",
"zustand": "^5.0.9"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"typescript": "^5"
}
}