-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.3 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "quirkbot-compiler",
"version": "1.1.3",
"author": "Quirkbot",
"description": "Cloud service that compiles Quirkbot programs.",
"homepage": "https://github.com/Quirkbot/QuirkbotCompiler",
"dependencies": {
"diskdb": "0.1.17",
"mongoose": "5.7.5",
"ncp": "2.0.0",
"quirkbot-arduino-builder": "0.0.5",
"quirkbot-arduino-hardware": "0.5.3",
"quirkbot-arduino-library": "2.9.0",
"quirkbot-avr-gcc": "1.0.1",
"rimraf": "2.6.2",
"throng": "4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Quirkbot/QuirkbotCompiler.git"
},
"scripts": {
"shrink": "rm -rf node_modules && rm -rf package-lock.json && npm install --production",
"deploy:npm": "git checkout master && npm publish",
"deploy:worker:stage": "git checkout develop && eb deploy quirkbot-compiler-worker-stage",
"deploy:worker:production": "git checkout master && eb deploy quirkbot-compiler-worker-production",
"deploy:web:stage": "git checkout develop && eb deploy quirkbot-compiler-web-stage",
"deploy:web:production": "git checkout master && eb deploy quirkbot-compiler-web-production",
"deploy:production": "npm run deploy:web:production && npm run deploy:worker:production",
"deploy:stage": "npm run deploy:web:stage && npm run deploy:worker:stage"
}
}