-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
33 lines (33 loc) · 1.37 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
{
"name": "justcast-it",
"description": "Straightforwad 1-click livestreaming web app",
"version": "1.0.0",
"private": true,
"main": "dist/server/index.js",
"scripts": {
"start": "cd server && yarn start",
"start:prod": "NODE_ENV=production node dist/server/index.js",
"deploy": "run-s gcp:build gcp:deploy:next",
"deploy:prod": "run-s gcp:build gcp:deploy:prod",
"fly": "flyctl deploy --config ops/fly.toml --app justcast-it-staging --image victorges/justcast.it:${TAG:-latest}",
"fly:prod": "flyctl deploy --config ops/fly.toml --app justcast-it --image victorges/justcast.it:${TAG:-latest}",
"clean": "rm -r dist",
"build": "mkdir -p dist && concurrently --names server,client 'cd server && yarn build' 'cd client && yarn build'",
"watch": "mkdir -p dist && concurrently --names server,client 'cd server && yarn watch' 'cd client && yarn watch'",
"docker": "run-s docker:build docker:push",
"docker:build": "docker build --progress=plain -t justcast-it .",
"docker:push": "docker push $(printf ' -t victorges/justcast.it:%s' ${DOCKER_TAGS:-dev})",
"docker:start": "docker compose up --build",
"docker:stop": "docker compose down"
},
"workspaces": [
"server",
"client"
],
"author": "Neolag Fresh Ventures",
"license": "MIT",
"devDependencies": {
"concurrently": "^6.2.0",
"npm-run-all": "^4.1.5"
}
}