-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 KB
/
package.json
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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@react-spring/web": "^9.7.5",
"@tailwindcss/postcss": "^4.0.0",
"@types/three": "^0.172.0",
"clsx": "^2.1.1",
"framer-motion": "^12.0.1",
"gsap": "^3.12.7",
"next": "15.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.4.0",
"three": "^0.172.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"typescript": "^5"
},
"eslintConfig": {
"extends": "next/core-web-vitals",
"rules": {
"react/no-unescaped-entities": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-expressions": "off",
"no-unused-expressions": "off"
}
},
"next": {
"eslint": {
"ignoreDuringBuilds": true
}
}
}