-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
35 lines (35 loc) · 1.51 KB
/
package.json
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
{
"name": "tweek",
"repository": "Soluto/tweek",
"author": "Soluto",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn docker-compose build",
"build:e2e": "yarn docker-compose:e2e build",
"build:test": "run-p -l build:e2e teardown",
"start": "yarn docker-compose up -d",
"start:e2e": "yarn docker-compose:e2e up -d",
"start:test": "yarn start:e2e editor publishing gateway api authoring",
"test": "run-s -l test:local:*",
"test:local:integration": "cd e2e/integration && yarn test",
"test:local:ui": "cd e2e/ui && yarn test",
"test:full-env": "run-s build:test start:test test",
"test:docker": "run-s build:test test:docker:*",
"test:docker:smoke": "yarn docker-compose:e2e run --rm smoke-tests",
"test:docker:integration": "yarn docker-compose:e2e run --rm e2e-integration",
"test:docker:ui": "yarn docker-compose:e2e run --rm e2e-ui",
"logs": "yarn docker-compose logs",
"logs:e2e": "yarn docker-compose:e2e logs",
"teardown": "yarn docker-compose down --remove-orphans",
"docker-compose": "DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1 docker-compose -f ./deployments/dev/docker-compose.yml -f ./deployments/dev/docker-compose.override.yml",
"docker-compose:e2e": "DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1 yarn docker-compose -f ./deployments/dev/docker-compose.e2e.yml",
"format:go": "gofmt -l -w"
},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
}
}