-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.72 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": "example-nextjs16",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm run generate-middleware && pnpm exec next dev --port ${PORT:-3002}",
"build": "pnpm run generate-middleware && pnpm exec next build",
"start": "pnpm exec next start --port ${PORT:-3002}",
"lint": "pnpm exec next lint",
"generate-middleware": "node scripts/generate-middleware-content.cjs"
},
"dependencies": {
"@floating-ui/react": "^0.26.28",
"@next/third-parties": "^16.3.0",
"@shikijs/transformers": "^1.12.1",
"@vercel/analytics": "^1.3.1",
"babel-plugin-react-compiler": "^19.0.0-beta-6fc168f-20241025",
"clsx": "^2.1.1",
"next": "^16.3.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-error-boundary": "^4.1.2",
"react-share": "^5.1.0",
"schema-dts": "^1.1.2",
"shiki": "^1.12.1",
"state-in-url": "workspace:*"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.9",
"@types/node": "^24",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "^15.5.13",
"css-loader": "^7.1.2",
"eslint": "^9",
"eslint-config-next": "^16.3.0",
"postcss": "^8",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-nesting": "^13.0.0",
"prettier": "^3.3.2",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.10",
"typescript": "^5",
"typescript-plugin-css-modules": "^5.1.0"
},
"type": "module",
"browserslist": [
"last 5 Chrome versions",
"last 5 ChromeAndroid versions",
"last 3 Firefox versions",
"last 3 FirefoxAndroid versions",
"Firefox ESR",
"last 2 Safari major versions",
"last 2 iOS major versions",
"> 5%",
"not dead"
]
}