{ "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" } }