-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 3.14 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm turbo:develop",
"build": "next build",
"build:for-next-server": "next build",
"build:for-edge": "npx @cloudflare/next-on-pages",
"build:for-edge:preview": "npx @cloudflare/next-on-pages && wrangler pages dev",
"build:with-op": "op run --env-file='.env' -- pnpm build",
"develop": "next dev",
"develop:for-edge": "npx @cloudflare/next-on-pages --watch",
"develop:for-edge:preview": "npx @cloudflare/next-on-pages --watch && wrangler pages dev",
"deploy": "npx @cloudflare/next-on-pages && wrangler pages deploy",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"postbuild": "next-sitemap --config='sitemap.config.mjs'",
"preinstall": "npx only-allow pnpm",
"prepare": "is-ci || husky",
"test": "vitest run",
"test:update": "vitest --update",
"test:watch": "vitest",
"test:watch:ui": "vitest --ui",
"turbo:develop": "turbo run develop",
"turbo:build": "turbo run build",
"turbo:build:for-edge": "turbo run build:for-edge",
"turbo:lint": "turbo run lint",
"turbo:format": "turbo run format",
"turbo:test": "turbo run test"
},
"lint-staged": {
"**/*.{mjs,cjs,js,jsx,ts,tsx,yaml,yml,json}": [
"pnpm format"
]
},
"dependencies": {
"@headlessui/react": "2.2.0",
"@heroicons/react": "2.2.0",
"@types/react-syntax-highlighter": "15.5.13",
"clsx": "2.1.1",
"framer-motion": "12.5.0",
"graphql": "16.10.0",
"graphql-request": "7.1.2",
"html-react-parser": "5.2.2",
"next": "15.2.2",
"next-sitemap": "4.2.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-syntax-highlighter": "15.6.1",
"swr": "2.3.3",
"tailwind-merge": "3.0.2",
"tailwindcss-animate": "1.0.7",
"zod": "3.24.2"
},
"devDependencies": {
"@cloudflare/next-on-pages": "1.13.10",
"@cloudflare/workers-types": "4.20250313.0",
"@eslint/compat": "1.2.7",
"@eslint/eslintrc": "3.3.0",
"@eslint/js": "9.22.0",
"@next/bundle-analyzer": "15.2.2",
"@tailwindcss/forms": "0.5.10",
"@tailwindcss/postcss": "4.0.14",
"@tailwindcss/typography": "0.5.16",
"@testing-library/react": "16.2.0",
"@types/node": "22.13.10",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@typescript-eslint/eslint-plugin": "8.26.1",
"@typescript-eslint/parser": "8.26.1",
"@vitejs/plugin-react": "4.3.4",
"@vitest/ui": "3.0.8",
"eslint": "8.57.1",
"eslint-config-next": "15.2.2",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-next-on-pages": "1.13.10",
"eslint-plugin-react": "7.37.4",
"globals": "15.15.0",
"husky": "9.1.7",
"is-ci": "4.1.0",
"jsdom": "26.0.0",
"lint-staged": "15.5.0",
"postcss": "8.5.3",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "0.6.11",
"tailwindcss": "4.0.14",
"turbo": "2.4.4",
"typescript": "5.8.2",
"vercel": "41.4.1",
"vitest": "3.0.8",
"wrangler": "3.114.1"
},
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": [
"workerd"
]
}
}