-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.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
{
"name": "note-repo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run clean && npx next dev -p 3456",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clean": "rm -rf .next"
},
"dependencies": {
"@heroicons/react": "^2.1.3",
"@tanstack/react-query": "^5.45.0",
"@vercel/analytics": "^1.2.2",
"axios": "^1.7.4",
"clsx": "^2.1.1",
"cookies-next": "^4.1.1",
"crypto-ts": "^1.0.2",
"hugeicons-react": "^0.3.0",
"iconsax-react": "^0.0.8",
"lottie-react": "^2.4.0",
"next": "^14.2.13",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"react-spinners": "^0.13.8",
"react-toastify": "^10.0.5"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}