-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
38 lines (38 loc) · 1.18 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
{
"private": true,
"workspaces": [
"actions",
"auth",
"web"
],
"scripts": {
"db": "docker run --name hnme_postgres_1 -it --rm --env POSTGRES_PASSWORD=postgrespassword --volume hnme_postgres_data:/var/lib/postgresql/data --publish 5432:5432 postgres:12",
"clean-db": "docker volume rm hnme_postgres_data",
"dev": "node composite-service.js",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"lint-fix": "yarn lint --fix",
"_hasura": "hasura --project hasura --envfile ../.env --skip-update-check",
"build": "docker build --tag hnme_app .",
"start-only": "docker run --name hnme_app_1 -it --rm --env-file ./.env --publish 3000:3000 hnme_app",
"start": "yarn build && yarn start-only",
"test": "yarn lint && yarn build"
},
"dependencies": {
"composite-service": "^1.0.0",
"composite-service-http-gateway": "^1.0.0"
},
"devDependencies": {
"docker-run-kill": "^1.0.2",
"dotenv": "^10.0.0",
"eslint": "^8.0.0",
"eslint-config-zenflow": "^4.0.0",
"hasura-cli": "2.0.9",
"nodemon": "^2.0.13",
"opener": "^1.5.2",
"typescript": "^4.4.3"
},
"prettier": {
"printWidth": 100,
"trailingComma": "all"
}
}