Files
devbin/package.json
2026-04-26 23:12:42 +02:00

35 lines
783 B
JSON

$ cat package.json
{
"name": "devbin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/typography": "^0.5.19",
"better-sqlite3": "^12.9.0",
"lucide-react": "^1.11.0",
"nanoid": "^5.1.9",
"next": "16.2.4",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"tailwindcss": "^4",
"typescript": "^5"
}
}