-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.68 KB
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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^16.1.6",
"@contentful/rich-text-types": "^17.2.5",
"@headlessui/react": "^2.2.9",
"@radix-ui/react-icons": "^1.3.2",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"clsx": "^2.1.1",
"graphql": "^16.12.0",
"graphql-config": "^5.1.5",
"graphql-tag": "^2.12.6",
"motion": "^12.23.26",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"seedrandom": "^3.0.5",
"tailwind-merge": "^3.4.0",
"valibot": "^1.2.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/seedrandom": "^3.0.8",
"babel-plugin-react-compiler": "1.0.0",
"oxfmt": "^0.28.0",
"oxlint": "^1.43.0",
"raw-loader": "^4.0.2",
"tailwindcss": "^4",
"turbo": "^2.8.1",
"typescript": "^5"
},
"lint-staged": [
{
"*.{js,jsx,ts,tsx,mjs,cjs}": "npm run lint"
},
{
"*": "oxfmt --no-error-on-unmatched-pattern"
}
],
"packageManager": "npm@11.6.0"
}