-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
12 lines (12 loc) · 783 Bytes
/
package.json
File metadata and controls
12 lines (12 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
{
"name": "low-pressure-zone-tasks",
"version": "1.0.0",
"description": "Handles development dependencies and deployment.",
"scripts": {
"deploy-prod": "./tools/deploy-client.sh && ./tools/deploy-server.sh",
"initialize-development": "node -e \"const p=process.platform; const cmd=p==='win32'?'npm run initialize-development:windows':(p==='darwin'?'npm run initialize-development:macos':'npm run initialize-development:linux'); require('child_process').execSync(cmd,{stdio:'inherit'})\"",
"initialize-development:windows": "powershell -File .\\tools\\initialize-development.windows.ps1",
"initialize-development:linux": "bash ./tools/initialize-development.linux.sh",
"initialize-development:macos": "bash ./tools/initialize-development.macos.sh"
}
}