-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.01 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
{
"name": "application",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "yarn workspace @application/frontend start",
"chain": "yarn workspace @application/hardhat chain",
"node": "yarn workspace @application/hardhat chain",
"deploy": "yarn workspace @application/hardhat deploy",
"demo": "yarn workspace @application/hardhat demo",
"scenario1": "yarn workspace @application/hardhat purchase",
"scenario2": "yarn workspace @application/hardhat sell",
"scenario3": "yarn workspace @application/hardhat review",
"scenario4": "yarn workspace @application/hardhat burn",
"purchase": "yarn workspace @application/hardhat purchase",
"sell": "yarn workspace @application/hardhat sell",
"review": "yarn workspace @application/hardhat review",
"burn": "yarn workspace @application/hardhat burn"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"packageManager": "[email protected]",
"dependencies": {
"dotenv": "^16.0.3",
"rlp": "^3.0.0"
}
}