- Remove .bmad-core/ and web-bundles/ (AI tool configs) - Remove tmp-home/ directories and cache files - Move test scripts to scripts/ directory - Move design file to docs/ directory - Remove duplicate AGENTS.md (content in CLAUDE.md) - Remove duplicate sample-app-config.toml - Update .gitignore with missing entries - Fix hardcoded credentials in check-migrations.js - Update IMPLEMENTATION_SUMMARY.md date 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
37 lines
1.5 KiB
JSON
37 lines
1.5 KiB
JSON
{
|
|
"name": "meteor-fullstack",
|
|
"version": "1.0.0",
|
|
"description": "Distributed Meteor Monitoring Network - Full Stack Application",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
|
|
"dev:backend": "cd meteor-web-backend && npm run start:dev",
|
|
"dev:frontend": "cd meteor-frontend && npm run dev",
|
|
"build": "npm run build:backend && npm run build:frontend",
|
|
"build:backend": "cd meteor-web-backend && npm run build",
|
|
"build:frontend": "cd meteor-frontend && npm run build",
|
|
"test": "npm run test:backend && npm run test:frontend",
|
|
"test:backend": "cd meteor-web-backend && npm run test",
|
|
"test:frontend": "cd meteor-frontend && npm run test",
|
|
"test:e2e": "cd meteor-frontend && npm run test:e2e",
|
|
"test:integration": "cd meteor-web-backend && npm run test:integration",
|
|
"test:fullstack": "npm run test && npm run test:integration && npm run test:e2e",
|
|
"setup:test": "./scripts/test-setup.sh",
|
|
"clean:test": "docker-compose -f docker-compose.test.yml down -v",
|
|
"lint": "npm run lint:backend && npm run lint:frontend",
|
|
"lint:backend": "cd meteor-web-backend && npm run lint",
|
|
"lint:frontend": "cd meteor-frontend && npm run lint",
|
|
"install:all": "npm install && cd meteor-web-backend && npm install && cd ../meteor-frontend && npm install"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2"
|
|
},
|
|
"workspaces": [
|
|
"meteor-web-backend",
|
|
"meteor-frontend"
|
|
],
|
|
"dependencies": {
|
|
"node-fetch": "^2.7.0"
|
|
}
|
|
}
|