-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
13 lines (13 loc) · 933 Bytes
/
package.json
File metadata and controls
13 lines (13 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"name": "low-pressure-zone-tasks",
"version": "1.0.0",
"description": "Handles development dependencies and deployment.",
"scripts": {
"deploy-prod": "git reset --hard && chmod +x ./tools/deploy-client.sh && chmod +x ./tools/deploy-server.sh && ./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",
"setup-server": "bash ./tools/deployment-setup.sh"
}
}