-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
15 lines (15 loc) · 923 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"scripts": {
"backend": "cd backend && start cmd /k yarn dev",
"build": "cd shared && yarn build && cd ../backend && yarn build && cd ../frontend && yarn build",
"dev": "yarn backend && yarn frontend",
"docker:backend": "docker build --pull --rm -f \"Dockerfile.backend\" -t ghcr.io/esamarathon/omnibar-moderation:latest-backend \".\"",
"docker:frontend": "docker build --pull --rm -f \"Dockerfile.frontend\" -t ghcr.io/esamarathon/omnibar-moderation:latest-frontend \".\"",
"docker:frontend-test": "docker build --pull --rm -f \"Dockerfile.frontend\" -t ghcr.io/esamarathon/omnibar-moderation:latest-frontend-test \".\"",
"frontend": "cd frontend && start cmd /k yarn dev",
"install": "cd frontend && yarn install && cd ../backend && yarn install && cd ../shared && yarn install",
"start": "cd backend/dist && node ./backend.js"
},
"dependencies": {},
"devDependencies": {}
}