-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.27 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
{
"name": "monorepo",
"version": "1.0.0",
"keywords": [
"ethereum",
"react",
"workspaces",
"yarn"
],
"private": true,
"workspaces": [
"packages/dapp",
"packages/hardhat-ts"
],
"scripts": {
"dapp:dev": "yarn workspace dapp dev",
"dapp:build": "yarn workspace dapp build",
"dapp:start": "yarn workspace dapp start",
"dapp:test": "yarn workspace dapp test",
"dapp:lint": "yarn workspace dapp lint",
"dapp:format": "yarn workspace dapp format",
"dapp:check": "yarn workspace dapp checkformat",
"dapp:type-check": "yarn workspace dapp type-check",
"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:deployalfa": "yarn workspace hardhat-ts deployalfa",
"hardhat:deploycelo": "yarn workspace hardhat-ts deploycelo",
"hardhat:accounts": "yarn workspace hardhat-ts accounts",
"hardhat:lint": "yarn workspace hardhat-ts lint"
},
"devDependencies": {
"hardhat": "^2.9.3",
"ts-node": "^10.7.0"
}
}