-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1 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
{
"name": "DappLearning",
"version": "1.0.0",
"keywords": [
"ethereum",
"react",
"uniswap",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"start": "yarn workspace react-app start",
"compile": "yarn workspace hardhat compile",
"deploy": "yarn workspace hardhat deploy",
"replace": "yarn workspace hardhat replace",
"upload": "yarn workspace hardhat upload",
"postdeploy": "yarn workspace hardhat postdeploy",
"graph-codegen": "yarn workspace dapp-learning-test codegen",
"graph-build": "yarn workspace dapp-learning-test build",
"graph-deploy": "yarn workspace dapp-learning-test deploy",
"graph-create-local": "yarn workspace dapp-learning-test create-local",
"graph-deploy-local": "yarn workspace dapp-learning-test deploy-local"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**",
"**/hardhat",
"**/hardhat/**"
]
}
}