-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.49 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.49 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
25
26
27
28
29
30
31
32
33
34
35
{
"name": "react-starter",
"version": "0.1.0",
"private": true,
"engines": {
"node": "14"
},
"scripts": {
"________________ development ________________": "",
"install:all": "yarn && yarn install:api && yarn install:front",
"start": "npm-run-all --parallel up start:front start:api",
"console": "yarn hasura console",
"test": "react-scripts test",
"upgr": "yarn upgrade-interactive --latest",
"up": "docker-compose up -d",
"stop": "docker-compose stop",
"fixtime": "sudo ntpdate -sb time.nist.gov",
"________________ deployment ________________": "",
"migrate:dev": "yarn hasura migrate apply --endpoint http://localhost:8080/",
"migrate:staging": "yarn hasura:server migrate apply --endpoint https://staging.rating-hasura.earlymetrics.com",
"migrate:prod": "yarn hasura:server migrate apply --endpoint https://rating-hasura.earlymetrics.com",
"________________ implementation details ________________": "",
"install:api": "cd api-starter && yarn",
"install:front": "cd front-starter && yarn",
"start:front": "cd front-starter && yarn start",
"start:api": "cd api-starter && yarn start",
"postinstall": "cd api-starter && yarn install --production=false && cd ../front-starter && yarn",
"hasura": "hasura --project db/hasura --envfile ../../.env --skip-update-check",
"hasura:server": "hasura --project db/hasura --skip-update-check"
},
"devDependencies": {
"hasura-cli": "2.0.9",
"npm-run-all": "^4.1.5"
}
}