-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
42 lines (42 loc) · 1.38 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
39
40
41
42
{
"name": "@1hive/quests",
"license": "SEE LICENSE IN <LICENSE>",
"keywords": [
"ethereum",
"react",
"uniswap",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"ci": "yarn install --pure-lockfile --immutable --skip-builds",
"lint": "yarn workspace @1hive/quests-react-app lint",
"chain": "yarn workspace @1hive/quests-hardhat chain",
"test": "yarn workspace @1hive/quests-hardhat test",
"start": "yarn workspace @1hive/quests-react-app start",
"build": "yarn workspace @1hive/quests-react-app build --max-old-space-size=12288",
"start:local": "yarn workspace @1hive/quests-react-app start:local",
"compile": "yarn workspace @1hive/quests-hardhat compile",
"coverage": "yarn workspace @1hive/quests-hardhat test-coverage",
"deploy:rinkeby": "yarn workspace @1hive/quests-hardhat deploy:rinkeby",
"deploy:local": "yarn workspace @1hive/quests-hardhat deploy:local",
"graph-run-node": "cd docker/graph-node && docker-compose up",
"graph-remove-node": "cd docker/graph-node && docker-compose down",
"e2e": "yarn workspace @1hive/e2e test"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**"
]
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}