-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.07 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
{
"name": "portfolio",
"author": "Gautier Darchen <[email protected]>",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo -p 8080",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "husky"
},
"dependencies": {
"@headlessui/react": "^2.1.2",
"@notionhq/client": "^2.2.15",
"@vercel/analytics": "^1.3.1",
"@vercel/functions": "^1.4.2",
"@vercel/speed-insights": "^1.0.12",
"aos": "^2.3.4",
"clsx": "^2.1.1",
"framer-motion": "12.0.0-alpha.2",
"next": "15.1.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.2.1",
"react-player": "^2.16.0",
"react-responsive": "^10.0.0",
"react-slick": "^0.30.2",
"serve": "^14.0.1",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwind-variants": "^0.3.0",
"use-debounce": "^10.0.1",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@types/aos": "^3.0.7",
"@types/node": "^22.0.0",
"@types/react": "npm:[email protected]",
"@typescript-eslint/parser": "^8.0.0",
"autoprefixer": "^10.4.19",
"eslint": "^9.12.0",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-tailwindcss": "3.17.5",
"eslint-plugin-unused-imports": "4.1.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"postcss": "^8.4.38",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.ts*": "eslint --cache --fix",
"*.{js,ts,tsx,css,md}": "prettier --write"
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]"
}
}
}