-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
{
"name": "briannoriega.com",
"version": "5.0.0",
"private": true,
"description": "briannoriega.com",
"author": "@noriega3",
"keywords": [
"personal-site"
],
"scripts": {
"dev": "next dev --turbopack --port=3001",
"build": "next build --turbopack",
"start": "next start",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check \"**/*.{ts,tsx,json}\"",
"lint": "next lint",
"eslint:format": "eslint app --fix",
"postinstall": "husky"
},
"engines": {
"node": ">=18.20.2"
},
"dependencies": {
"@next/env": "^15.3.0",
"@next/third-parties": "^15.3.0",
"@radix-ui/react-dialog": "^1.1.7",
"@supabase/supabase-js": "^2.49.4",
"@vercel/speed-insights": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.18.2",
"lucide-react": "^0.477.0",
"next": "^15.3.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@types/node": "^22.14.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.2",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"autoprefixer": "^10.4.21",
"eslint": "^9.24.0",
"eslint-config-next": "^15.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.6",
"husky": "^9.1.7",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"react-error-boundary": "^5.0.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3"
},
"lint-staged": {
"app/**/*": [
"pnpm prettier:format",
"pnpm eslint:format"
]
}
}