-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
39 lines (39 loc) · 1.84 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": "nextjs-ethereum-starter",
"version": "1.0.0",
"private": true,
"scripts": {
"wizard": "yarn workspace @create-nft-dao/wizard dev -p 3000",
"wizard:build": "yarn workspace @create-nft-dao/wizard build",
"wizard:start": "yarn workspace @create-nft-dao/wizard start",
"admin": "yarn workspace @create-nft-dao/admin dev -p 3001",
"admin:build": "yarn workspace @create-nft-dao/admin build",
"admin:start": "yarn workspace @create-nft-dao/admin start",
"shared:build": "yarn workspace @create-nft-dao/shared build",
"shared:start": "yarn workspace @create-nft-dao/shared start",
"compile": "yarn workspace @create-nft-dao/hardhat compile",
"hardhat:build:ts": "yarn workspace @create-nft-dao/hardhat build:ts",
"hardhat:build": "yarn workspace @create-nft-dao/hardhat build",
"chain": "yarn workspace @create-nft-dao/hardhat chain",
"deploy": "yarn workspace @create-nft-dao/hardhat deploy",
"deploy:rinkeby": "yarn workspace @create-nft-dao/hardhat deploy:rinkeby",
"test": "yarn workspace @create-nft-dao/hardhat test",
"console": "yarn workspace @create-nft-dao/hardhat console",
"console:rinkeby": "yarn workspace @create-nft-dao/hardhat console:rinkeby",
"clean": "yarn workspace @create-nft-dao/hardhat clean",
"prebuild": "yarn shared:build && yarn hardhat:build",
"verify:rinkeby": "yarn workspace @create-nft-dao/hardhat verify:rinkeby",
"verify:optimistic-kovan": "yarn workspace @create-nft-dao/hardhat verify:optimistic-kovan"
},
"devDependencies": {
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"//": "added ts-node here to overcome the bug with HH and yarn where hardhat throws HH13 when ts-node is only installed in the hardhat package.",
"ts-node": "^10.4.0"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}