27 lines
512 B
JSON
27 lines
512 B
JSON
{
|
|
"name": "proxy-bun",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"test": "bun test"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.14",
|
|
"@types/bun": "latest",
|
|
"@types/node": "^25.6.0",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"tailwindcss": "^4.2.4",
|
|
"typescript": "^6.0.3"
|
|
},
|
|
"dependencies": {
|
|
"next": "^16.2.5",
|
|
"react": "^19.2.6",
|
|
"react-dom": "^19.2.6"
|
|
}
|
|
}
|