watcher-ts/package.json
nikugogoi ba6b996e65
Deploy example contract in graph-node (#113)
* Deploy example contract in graph-node

* Add auth token in docker build for github packages

* Add steps for running tests in CI
2022-04-29 15:11:40 +05:30

25 lines
713 B
JSON

{
"name": "watcher-ts",
"license": "AGPL-3.0",
"private": true,
"workspaces": {
"packages": ["packages/*"],
"nohoist": ["**/@graphprotocol/graph-ts"]
},
"devDependencies": {
"depcheck": "^1.4.2",
"husky": "^7.0.2",
"lerna": "^4.0.0"
},
"scripts": {
"lint": "lerna run lint --stream",
"test:init": "lerna run test:init --stream --ignore @vulcanize/*-watcher",
"test": "lerna run test --stream --ignore @vulcanize/*-watcher",
"build": "lerna run build --stream",
"build:watch": "lerna run build --stream --parallel -- -w",
"build:contracts": "lerna run build:contracts",
"db:reset": "sudo ./scripts/reset-dbs.sh",
"prepare": "husky install"
}
}