Spaces:
Sleeping
Sleeping
File size: 660 Bytes
08ab15f | 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 | {
"name": "silicon-sampling-lab",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1 --port 5190",
"build": "tsc -p tsconfig.json && vite build",
"preview": "vite preview --host 127.0.0.1 --port 5191",
"start": "python3 server.py --host 0.0.0.0 --port ${PORT:-8765}"
},
"dependencies": {
"echarts": "^6.1.0",
"lucide-react": "^1.22.0",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"typescript": "^6.0.3",
"vite": "^8.1.0"
}
}
|