-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 980 Bytes
/
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
{
"name": "@discovery-dao/monorepo",
"private": true,
"workspaces": {
"packages": [
"packages/contracts",
"packages/web-app",
"packages/dev"
],
"nohoist": [
"**/@openzeppelin/**",
"**/@typechain/**",
"**/typechain/**",
"**/typescript/**",
"**/ts-node/**",
"**/mocha/**",
"@typescript-eslint/**",
"concurrently"
]
},
"scripts": {
"contracts:dev": "yarn workspace @discovery-dao/contracts dev",
"contracts:export": "yarn workspace @discovery-dao/contracts export",
"contracts:compile": "yarn workspace @discovery-dao/contracts compile",
"contracts:lint": "yarn workspace @discovery-dao/contracts lint",
"contracts:lint:fix": "yarn workspace @discovery-dao/contracts lint:fix",
"web:bundle": "yarn workspace @discovery-dao/web-app bundle",
"web:dev": "yarn workspace @discovery-dao/web-app dev",
"web:lint": "yarn workspace @discovery-dao/web-app lint"
}
}