forked from loathers/garbage-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 803 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
{
"name": "garbage-collector",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach -ptv run build && yarn run combineFiles",
"combineFiles": "copyfiles --up 2 \"packages/garbo/dist/**\" .; copyfiles --up 2 \"packages/garbo-relay/dist/**\" .",
"format": "yarn run prettier --write .github && yarn workspaces foreach -pv run format",
"lint": " yarn workspaces foreach -pv run lint",
"pre-commit": "yarn workspaces foreach -v run pre-commit",
"madge": "yarn workspaces foreach -v run madge",
"postinstall": "husky install"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"eslint": "^8.50.0",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"typescript": ">=4.2.0"
},
"packageManager": "[email protected]"
}