-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.34 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.34 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
{
"name": "Studio",
"version": "1.3.28",
"description": "Own your data!",
"main": "studio.js",
"author": "Guilherme Capilé",
"dependencies": {
"@fortawesome/fontawesome-free": "5.*",
"billboard.js": "^3.16.0",
"d3": "*",
"less": "*",
"moment": "^2.30.1",
"node-ipc": "^9.1.4",
"pell": "1.0.*",
"pikaday-time": "^1.6.1",
"sass": "*",
"topojson-client": "^3.1.0",
"topojson-simplify": "^3.0.3",
"uglify-js": "^3.19"
},
"scripts": {
"build": "docker build -t tecnodesign/studio:dev git@github.com:capile/studio.git -f Dockerfile-dev && docker build -t tecnodesign/studio:latest -t tecnodesign/studio:v1.3 git@github.com:capile/studio.git",
"publish": "docker push tecnodesign/studio:dev && docker push tecnodesign/studio:latest && docker push tecnodesign/studio:v1.3",
"build-nginx": "docker build -t tecnodesign/nginx:latest git@github.com:capile/studio.git -f data/deploy/containers/nginx.dockerfile && docker push tecnodesign/nginx:latest",
"build-all": "npm run build-nginx && npm run build && npm run publish",
"test": "docker run -it --rm -e STUDIO_ENV=test -v $PWD:/var/www/studio -u $UID tecnodesign/studio:latest composer test",
"start": "electron ."
},
"license": "GPL-3.0-only"
}