-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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": "portfolio-next",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"serve": "next serve",
"lint": "next lint",
"format:check": "prettier --check \"./src/**/*.{ts,tsx}\" --cache",
"format:write": "prettier --write \"./src/**/*.{ts,tsx}\" --cache",
"prepare": "husky"
},
"dependencies": {
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"framer-motion": "^11.13.5",
"next": "15.1.2",
"next-themes": "^0.4.4",
"posthog-js": "^1.195.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-intersection-observer": "^9.13.1",
"react-scroll": "^1.9.0",
"react-use-lanyard": "^0.3.2",
"sharp": "^0.33.5"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@commitlint/types": "^18.6.1",
"@types/node": "^20.17.9",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"@types/react-scroll": "^1.8.10",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.16",
"tw-colors": "^3.3.2",
"typescript": "^5.7.2"
},
"trustedDependencies": [
"@vercel/speed-insights"
]
}