File size: 1,324 Bytes
f91a684 | 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 | {
"name": "react-example",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"api": "node run-api.js",
"api:compiler": "node server/index.js",
"dev": "vite",
"start": "npm run build && npm run api",
"build": "vite build",
"preview": "vite preview",
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
"lint": "tsc --noEmit"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@fontsource-variable/geist": "^5.2.8",
"@monaco-editor/react": "^4.7.0",
"@vitejs/plugin-react": "^5.0.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.6",
"express": "^4.22.1",
"highlight.js": "^11.11.1",
"lucide-react": "^0.546.0",
"motion": "^12.38.0",
"react": "^19.0.0",
"react-confetti": "^6.4.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"recharts": "^3.8.1",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"shadcn": "^4.2.0",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"vite": "^6.2.0",
"xterm": "^5.3.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.4",
"@types/node": "^22.14.0",
"autoprefixer": "^10.4.21",
"tailwindcss": "^4.1.14",
"typescript": "~5.8.2"
}
}
|