-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
96 lines (96 loc) · 3.06 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
{
"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": "11.16.0",
"graphql": "16.10.0",
"graphql-request": "7.1.2",
"html-react-parser": "5.2.2",
"next": "15.1.3",
"next-sitemap": "4.2.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-syntax-highlighter": "15.6.1",
"swr": "2.3.0",
"tailwind-merge": "2.6.0",
"tailwindcss-animate": "1.0.7",
"zod": "3.24.1"
},
"devDependencies": {
"@cloudflare/next-on-pages": "1.13.7",
"@cloudflare/workers-types": "4.20241230.0",
"@eslint/compat": "1.2.4",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.17.0",
"@next/bundle-analyzer": "15.1.3",
"@tailwindcss/forms": "0.5.9",
"@tailwindcss/typography": "0.5.15",
"@testing-library/react": "16.1.0",
"@types/node": "22.10.5",
"@types/react": "19.0.3",
"@types/react-dom": "19.0.2",
"@typescript-eslint/eslint-plugin": "8.19.0",
"@typescript-eslint/parser": "8.19.0",
"@vitejs/plugin-react": "4.3.4",
"@vitest/ui": "2.1.8",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-next-on-pages": "1.13.7",
"eslint-plugin-react": "7.37.3",
"globals": "15.14.0",
"husky": "9.1.7",
"is-ci": "4.1.0",
"jsdom": "25.0.1",
"lint-staged": "15.3.0",
"postcss": "8.4.49",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"tailwindcss": "3.4.17",
"turbo": "2.3.3",
"typescript": "5.7.2",
"vercel": "39.2.5",
"vitest": "2.1.8",
"wrangler": "3.99.0"
},
"packageManager": "[email protected]"
}