forked from stolostron/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 4.46 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@stolostron/console",
"version": "0.0.1",
"license": "SEE LICENSE IN LICENSE",
"private": "true",
"scripts": {
"postinstall": "concurrently npm:ci:* -c green,blue",
"ci:frontend": "cd frontend && npm ci --legacy-peer-deps",
"ci:backend": "cd backend && npm ci",
"start": "concurrently npm:start:* -c green,blue",
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend && npm start",
"plugins": "concurrently npm:start:backend npm:serve:plugins npm:ocp-console -n backend,frontend,console -c green,blue,magenta",
"plugins-dev": "concurrently npm:start:backend npm:serve:plugins -n backend,frontend -c green,blue",
"ocp-console": "./start-ocp-console.sh",
"serve:plugins": "cd frontend && npm run serve:plugins",
"check": "concurrently --kill-others-on-fail npm:copyright:check npm:check:* -c green,blue,magenta",
"check:backend": "cd backend && npm run check",
"check:frontend": "cd frontend && npm run check",
"lint": "concurrently --kill-others-on-fail \"npm:lint:*(!fix)\" -c green,blue",
"lint:backend": "cd backend && npm run lint",
"lint:frontend": "cd frontend && npm run lint",
"lint:fix": "concurrently --kill-others-on-fail npm:lint:fix:* -c green,blue",
"lint:fix:backend": "cd backend && npm run lint:fix",
"lint:fix:frontend": "cd frontend && npm run lint:fix",
"test": "concurrently -P --kill-others-on-fail \"npm:test:* -- {@}\" -c green,blue --",
"test:backend": "cd backend && npm test --",
"test:frontend": "cd frontend && npm test --",
"i18n:frontend": "cd frontend && npm run i18n --",
"build": "concurrently npm:build:* -c green,blue,magenta",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"build:plugins": "cd frontend && npm run build:plugins",
"clean": "concurrently npm:clean:* -c green,blue",
"clean:backend": "cd backend && npm run clean",
"clean:frontend": "cd frontend && npm run clean",
"update": "npx npm-check-updates --upgrade && npm install && npm run backend:update && npm run frontend:update",
"backend:update": "cd backend && npm run update",
"frontend:update": "cd frontend && npm run update",
"copyright:check": "ts-node --skip-project scripts/copyright-check",
"copyright:fix": "ts-node --skip-project scripts/copyright-fix",
"docker:build": "docker build --file Dockerfile.prow --tag console .",
"docker:build:mce": "docker build --file Dockerfile.mce.prow --tag console-mce .",
"docker:run": "npm run docker:build && docker run --rm --name console -p 3000:3000 -e PORT=3000 -v $PWD/backend/certs:/app/certs -v $PWD/backend/config:/app/config --env-file=backend/.env console | ./backend/node_modules/.bin/pino-zen -i time && docker rm -f console",
"docker:deploy": "npm run docker:build && docker tag console quay.io/$USER/console:latest && docker push quay.io/$USER/console:latest && ./scripts/patch-deployment.sh latest quay.io/$USER/console",
"podman:build": "podman build --file Dockerfile.prow --tag console .",
"podman:build:mce": "podman build --file Dockerfile.mce.prow --tag console-mce .",
"podman:run": "npm run podman:build && podman run --rm --name console -p 3000:3000 -e PORT=3000 -v $PWD/backend/certs:/app/certs -v $PWD/backend/config:/app/config --env-file=backend/.env console | ./backend/node_modules/.bin/pino-zen -i time && podman rm -f console",
"podman:deploy": "npm run podman:build && podman tag console quay.io/$USER/console:latest && podman push quay.io/$USER/console:latest && ./scripts/patch-deployment.sh latest quay.io/$USER/console",
"podman:deploy:mce": "npm run podman:build:mce && podman tag console-mce quay.io/$USER/console-mce:latest && podman push quay.io/$USER/console-mce:latest && ./scripts/patch-deployment.sh latest quay.io/$USER/console-mce",
"setup": "./setup.sh",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "14.18.22",
"@types/semver": "^7.3.13",
"concurrently": "7.2.2",
"husky": "7.0.4",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"ts-node": "10.9.1",
"typescript": "4.7.4"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"semi": false,
"singleQuote": true
}
}