forked from mangrovedao/mangrove-bots
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 832 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 832 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
{
"private": true,
"name": "mangrove-bots",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"postinstall": "husky install",
"heroku-postbuild": "pinst --disable && yarn heroku-build",
"heroku-build": "yarn install && yarn workspaces foreach --topological-dev run heroku-build-this-package",
"heroku-cleanup": "pinst --enable",
"build": "yarn install && yarn workspaces foreach --topological-dev run build-this-package",
"clean": "yarn workspaces foreach --topological-dev run clean-this-package",
"test": "yarn workspaces foreach --topological-dev run test"
},
"devDependencies": {
"husky": "^7.0.2"
},
"dependencies": {
"pinst": "^3.0.0"
},
"packageManager": "yarn@3.1.0"
}