-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.33 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.33 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "devopshobbies-landing",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@8.15.0",
"description": "DevOps Hobbies Landing Page",
"author": "Mehdi Rahimi <mehdirahimi.dev@gmail.com>",
"license": "MIT",
"keywords": [
"nextjs",
"starter",
"typescript"
],
"scripts": {
"build": "next build",
"dev": "next dev --turbo",
"export": "next build && next export",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"lint": "eslint --ignore-pattern .gitignore --fix",
"prepare": "husky",
"start": "next start"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.7.2",
"@fortawesome/free-solid-svg-icons": "6.7.2",
"@fortawesome/react-fontawesome": "0.2.2",
"@radix-ui/react-dropdown-menu": "2.1.15",
"@radix-ui/react-icons": "1.3.2",
"@radix-ui/react-separator": "1.1.7",
"@radix-ui/react-slot": "1.2.3",
"@radix-ui/react-tooltip": "1.2.7",
"@react-three/drei": "10.0.8",
"@react-three/fiber": "9.1.2",
"@tabler/icons-react": "3.33.0",
"@types/three": "0.176.0",
"axios": "1.9.0",
"canvas": "3.1.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"gsap": "3.13.0",
"immer": "10.1.1",
"lucide-react": "0.511.0",
"motion": "12.12.2",
"next": "15.3.2",
"next-themes": "0.4.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "5.5.0",
"react-konva": "19.0.4",
"tailwind-merge": "3.3.0",
"tailwindcss-animate": "1.0.7",
"three": "0.176.0",
"three-stdlib": "2.36.0",
"zustand": "5.0.4"
},
"devDependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@iconify-icon/react": "3.0.0",
"@tailwindcss/postcss": "4.1.7",
"@types/node": "22.15.18",
"@types/react": "19.1.4",
"@types/react-dom": "19.1.5",
"@typescript-eslint/eslint-plugin": "8.32.1",
"@typescript-eslint/parser": "8.32.1",
"autoprefixer": "10.4.21",
"eslint": "9.27.0",
"eslint-config-hyoban": "4.0.7",
"eslint-config-next": "15.3.2",
"husky": "9.1.7",
"lint-staged": "16.0.0",
"postcss": "8.5.3",
"prettier": "3.5.3",
"tailwindcss": "4.1.7",
"typescript": "5.8.3"
},
"lint-staged": {
"./**/*.{ts,js,jsx,tsx}": [
"pnpm run lint",
"pnpm run format"
]
}
}