forked from privacysandbox/privacy-sandbox-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.19 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.19 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
{
"name": "privacy-sandbox-demos",
"version": "0.0.0",
"license": "apache-2.0",
"description": "Privacy Sandbox Demos: Mixed demo of Privacy Sandbox APIs",
"scripts": {
"cert": "cd nginx/cert && ./mkcert.sh",
"fmt": "pre-commit run --all-files",
"//": "block of commands for running containers with docker & docker-compose. uncomment to use it",
"start": "docker-compose up --build --force-recreate",
"stop": "docker-compose down --volumes --timeout 1",
"build": "docker-compose build --no-cache",
"clean": "docker-compose down --volumes && docker-compose rm --volumes --force && docker volume prune --force && docker image prune -f && docker rmi -f $(docker images -q)",
"//": "block of commands for running containers with podman & podman-compose",
"podman-start": "podman-compose up --build --force-recreate",
"podman-stop": "podman-compose down --volumes --timeout 1",
"podman-build": "podman-compose build --no-cache",
"podman-clean": "podman-compose down --volumes && podman volume prune --force && podman image prune --all --force && podman rmi --all --force"
},
"devDependencies": {
"firebase-tools": "^11.23.0",
"prettier": "^2.8.4"
}
}