-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 834 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 834 Bytes
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": "bzzaar-contracts",
"description": "customized environment for web3 development",
"version": "0.0.3",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/webpack-dev-server",
"**/react-scripts"
]
},
"scripts": {
"chain": "yarn workspace @bzzaar-contracts/chain chain",
"start": "yarn workspace @bzzaar-contracts/app start",
"build": "yarn workspace @bzzaar-contracts/app build",
"eject": "yarn workspace @bzzaar-contracts/app eject",
"compile": "yarn workspace @bzzaar-contracts/chain compile",
"test:chain": "yarn workspace @bzzaar-contracts/chain test",
"deploy": "yarn workspace @bzzaar-contracts/chain deploy"
},
"devDependencies": {
"ts-node": "^9.1.1"
},
"dependencies": {
"hardhat": "2.6.4"
}
}