Files
LLM-Labs/package.json
T
2026-03-22 16:17:20 -06:00

36 lines
962 B
JSON

{
"name": "notebook-conversion-site",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,md,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,md,mdx}\" --cache"
},
"dependencies": {
"gray-matter": "^4.0.3",
"micromark": "^4.0.2",
"next": "^15.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.1",
"eslint-config-next": "^15.0.1",
"postcss": "^8.4.39",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.5.3"
}
}