forked from loathers/garbage-collector
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
25 lines (25 loc) · 844 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
{
"name": "garbage-collector",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach -ptv run build && yarn run combineFiles",
"check": " yarn workspaces foreach -pv run check",
"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",
"prepare": "husky"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"eslint": "^9.9.0",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]"
}