gc-wing/package.json

20 lines
647 B
JSON

{
"name": "wing-fleet-dashboard",
"private": true,
"workspaces": ["apps/*"],
"scripts": {
"dev": "npm run dev:web & npm run dev:api",
"dev:web": "npm -w @wing/web run dev",
"dev:api": "npm -w @wing/api run dev",
"build": "npm -w @wing/web run build && npm -w @wing/api run build",
"build:web": "npm -w @wing/web run build",
"build:api": "npm -w @wing/api run build",
"lint": "npm -w @wing/web run lint",
"prepare:data": "node scripts/prepare-zones.mjs && node scripts/prepare-legacy.mjs",
"prepare:subcables": "node scripts/prepare-subcables.mjs"
},
"devDependencies": {
"xlsx": "^0.18.5"
}
}