-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.37 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": "dapp-scaffold",
"version": "1.0.0",
"description": "Mono-Repo of a scaffolding to buidl your own ethereum dapp with NextJs FrontEnd, HardHat in Typescript for Smart Contract Testing and development,and with Chainlink and an avalable directory for creating your own sub graph for integrating the Graph.",
"repository": "[email protected]:jlifts/dapp-scaffold.git",
"author": "Josh Burgess <[email protected]>",
"license": "MIT",
"private": true,
"keywords": [
"ethereum",
"react",
"workspaces",
"yarn"
],
"workspaces": {
"packages": [
"./packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**",
"**/hardhat",
"**/hardhat/**",
"**/hardhat-ts",
"**/hardhat-ts/**"
]
},
"scripts": {
"dev": "yarn workspace client dev",
"build": "yarn workspace client build",
"start": "yarn workspace client start",
"test": "yarn workspace client test",
"test:hardhat": "yarn workspace hardhat test",
"serve": "yarn workspace hardhat serve",
"compile": "yarn workspace hardhat build",
"deploy": "yarn workspace hardhat deploy",
"deploy:rinkeby": "yarn workspace hardhat deploy:rinkeby",
"test:contracts": "yarn workspace hardhat test",
"accounts": "yarn workspace hardhat accounts",
"clean": "yarn workspace hardhat clean"
}
}