-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.25 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
{
"name": "restore",
"version": "1.0.1",
"keywords": [
"ethereum",
"angular",
"hardhat"
],
"private": true,
"workspaces": ["packages/dapp", "packages/hardhat-ts", "packages/subgraph"],
"scripts": {
"dapp:ng": "yarn workspace dapp ng",
"dapp:start": "yarn workspace dapp start",
"dapp:build": "yarn workspace dapp build",
"dapp:buildprod": "yarn workspace dapp build:prod",
"dapp:test": "yarn workspace dapp test",
"dapp:lint": "yarn workspace dapp lint",
"dapp:watch": "yarn workspace dapp watch",
"dapp:e2e": "yarn workspace dapp e2e",
"hardhat:clean": "yarn workspace hardhat-ts clean",
"hardhat:compile": "yarn workspace hardhat-ts compile",
"hardhat:watch": "yarn workspace hardhat-ts watch",
"hardhat:localnode": "yarn workspace hardhat-ts localnode",
"hardhat:test": "yarn workspace hardhat-ts test",
"hardhat:coverage": "yarn workspace hardhat-ts coverage",
"hardhat:deployrinkeby": "yarn workspace hardhat-ts deployrinkeby",
"hardhat:deploymainnet": "yarn workspace hardhat-ts deploymainnet",
"hardhat:accounts": "yarn workspace hardhat-ts accounts",
"hardhat:check": "yarn workspace hardhat-ts checksol",
"hardhat:lint": "yarn workspace hardhat-ts lint"
}
}