-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.65 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
52
{
"name": "personal-website",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"prebuild": "next telemetry disable",
"build": "next build",
"postbuild": "mkdir -p .next/standalone/public .next/standalone/.next/static && cp -r public/* .next/standalone/public && cp -r .next/static/* .next/standalone/.next/static",
"start": "bun run .next/standalone/server.js",
"lint": "next lint"
},
"dependencies": {
"@react-three/drei": "~9.78.2",
"@react-three/fiber": "~8.13.4",
"motion": "^11.15.0",
"next": "^14.2.22",
"nodemailer": "^6.9.16",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intersection-observer": "^9.14.1",
"react-parallax-tilt": "^1.7.268",
"react-vertical-timeline-component": "^3.5.3",
"sharp": "^0.33.5",
"three": "~0.154.0",
"webgl-fluid-enhanced": "^0.8.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.22",
"@types/eslint": "^8.56.12",
"@types/eslint__eslintrc": "^2.1.2",
"@types/node": "^20.17.11",
"@types/nodemailer": "^6.4.17",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-vertical-timeline-component": "^3.3.6",
"@types/three": "~0.154.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.22",
"eslint-config-prettier": "^9.1.0",
"next-themes": "^0.4.4",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.1",
"typescript": "^5.7.2"
}
}