-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1023 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 1023 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
{
"name": "ICVCMGovernance",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/**/*"
],
"license": "MIT",
"devDependencies": {
"lerna": "^5.4.3",
"postinstall-postinstall": "^2.1.0"
},
"scripts": {
"web:start": "yarn workspace web dev",
"chain": "yarn workspace contracts chain",
"contracts:deploy": "yarn workspace contracts deploy && yarn workspace web types",
"contracts:deploy_upgrade": "yarn workspace contracts deploy_upgrade && yarn workspace web types",
"contracts:test": "yarn workspace contracts test",
"contracts:coverage": "yarn workspace contracts coverage",
"contracts:gas": "yarn workspace contracts gas",
"contracts:deploy:goerli": "yarn workspace contracts deploy:goerli && yarn workspace web types",
"contracts:deploy_upgrade:goerli": "yarn workspace contracts deploy_upgrade:goerli && yarn workspace web types",
"lint": "yarn workspace contracts lint && yarn workspace web lint",
"postinstall": "patch-package"
}
}