forked from nezz0746/typescript-eth-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 920 Bytes
/
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
{
"name": "my-eth-starter",
"author": "@nezz0746",
"license": "MIT",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "yarn workspace my-eth-starter-frontend-project dev",
"build": "yarn workspace my-eth-starter-frontend-project build",
"start": "yarn workspace my-eth-starter-frontend-project start",
"ipfs": "yarn workspace my-eth-starter-frontend-project ipfs",
"chain": "yarn workspace my-eth-starter-hardhat-project chain",
"deploy": "yarn workspace my-eth-starter-hardhat-project deploy",
"deploy:rinkeby": "yarn workspace my-eth-starter-hardhat-project deploy:rinkeby",
"deploy:matic": "yarn workspace my-eth-starter-hardhat-project deploy:matic",
"compile": "yarn workspace my-eth-starter-hardhat-project compile",
"clean": "yarn workspace my-eth-starter-hardhat-project clean"
},
"workspaces": {
"packages": [
"./packages/*"
]
}
}