- Complete web-based STL file storage and 3D viewer - Express.js backend with SQLite database - Interactive Three.js 3D viewer with orbit controls - File upload with drag-and-drop support - Security features: rate limiting, input validation, helmet - Container deployment with Docker/Podman - Production-ready configuration management - Comprehensive logging and monitoring 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
699 B
JSON
29 lines
699 B
JSON
{
|
|
"name": "stl-storage-app",
|
|
"version": "1.0.0",
|
|
"description": "Web-based STL file storage and viewer",
|
|
"main": "database.js",
|
|
"scripts": {
|
|
"init-db": "node init-db.js",
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js"
|
|
},
|
|
"dependencies": {
|
|
"sqlite3": "^5.1.6",
|
|
"express": "^4.18.2",
|
|
"multer": "^1.4.5-lts.1",
|
|
"cors": "^2.8.5",
|
|
"uuid": "^9.0.1",
|
|
"helmet": "^7.1.0",
|
|
"express-rate-limit": "^7.1.5",
|
|
"express-validator": "^7.0.1",
|
|
"dotenv": "^16.3.1",
|
|
"winston": "^3.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.2"
|
|
},
|
|
"keywords": ["stl", "3d-printing", "file-storage", "sqlite"],
|
|
"author": "",
|
|
"license": "MIT"
|
|
} |