-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.57 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
33
34
35
36
{
"name": "firefly",
"private": true,
"version": "0.30.1",
"description": "Server for filament in the browser",
"main": "index.js",
"scripts": {
"generate-local-certificate": "scripts/generate-local-certificate.sh",
"lint": "eslint .",
"coverage": "istanbul test -x 'spec/**' jasmine-node -- --junitreport spec && jshint --verbose .",
"build": "docker-compose build && npm run build:project",
"build:project": "docker build -t montagestudio/firefly-project:${PROJECT_VERSION:-latest} project",
"start": "scripts/remove-user-containers.sh && docker-compose up -d --build",
"stop": "scripts/remove-user-containers.sh && docker-compose down --volumes",
"deploy": "deploy/vagrant/deploy.sh",
"login-debug": "vagrant ssh login -c 'sudo pkill -USR1 -u montage -f \"nodejs /srv/firefly\" && node-inspector --web-port=8104'",
"login-remote-debug": "vagrant ssh login -c 'sudo pkill -USR1 -u montage -f \"nodejs /srv/firefly\"'",
"project-debug": "vagrant ssh project -c 'sudo pkill -USR1 -u montage -f \"nodejs /srv/firefly\" && node-inspector --web-port=8105'",
"project-remote-debug": "vagrant ssh project -c 'sudo pkill -USR1 -u montage -f \"nodejs /srv/firefly\"'",
"mop": "deploy/build/mop.sh",
"enter-mop-mode": "deploy/vagrant/enter-mop-mode.sh",
"exit-mop-mode": "deploy/vagrant/exit-mop-mode.sh"
},
"devDependencies": {
"eslint": "^4.19.1"
},
"repository": {
"type": "git",
"url": "git://github.com/declarativ/firefly.git"
},
"subdomain": "firefly",
"engines": {
"node": "8.9.x",
"npm": "5.6.x"
}
}