Files
Info/package.json
2026-01-25 23:05:41 +02:00

20 lines
701 B
JSON

{
"name": "osint-platform",
"version": "1.0.0",
"description": "Private OSINT Automation Platform",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"start": "cd backend && npm start",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}