-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
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
{
"name": "wanfahdiva.com",
"description": "Wanfah Diva personal website",
"license": "MIT",
"private": true,
"version": "0.0.1",
"scripts": {
"dev": "next dev --turbo -p 3008",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"prettier:check": "prettier --check \"**/*.{ts,tsx,json}\"",
"prettier:format": "prettier --write .",
"generate": "bun plop --plopfile ./.plop/plopfile.js",
"prepare": "husky"
},
"lint-staged": {
"src/**/*": [
"bun run lint:fix",
"bun run prettier:format"
]
},
"lint-staged-config": {
"timeout": 30000
},
"browser": {
"buffer": false
},
"dependencies": {
"@studio-freight/react-lenis": "^0.0.47",
"@types/glob": "^8.1.0",
"@types/gsap": "^3.0.0",
"@types/node": "20.2.1",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"@types/react-scroll": "^1.8.10",
"bufferutil": "^4.0.8",
"framer-motion": "^11.2.10",
"gsap": "^3.12.5",
"lenis": "^1.1.9",
"lucide-react": "^0.292.0",
"next": "14.1.1",
"next-seo": "^6.5.0",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intersection-observer": "^9.13.0",
"react-scroll": "^1.9.0",
"react-use": "^17.4.0",
"sharp": "^0.33.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "5.57.0",
"@vercel/analytics": "^1.3.1",
"autoprefixer": "10.4.14",
"class-variance-authority": "^0.7.0",
"clsx": "^1.2.1",
"eslint": "8.41.0",
"eslint-config-next": "13.4.3",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "^5.0.0-alpha.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"plop": "^4.0.1",
"postcss": "^8.4.31",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.5",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.0.4"
}
}