-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 975 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
{
"name": "Mono-Lab",
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"example": "./packages/scripts/output-example.sh",
"app": "yarn workspaces foreach --from @apps/$0 run $1",
"package": "yarn workspaces foreach --from @packages/$0 run $1",
"all": "yarn workspaces foreach -Ap run $@",
"all-app": "yarn workspaces foreach -Ap --from @apps/* run $@",
"all-package": "yarn workspaces foreach -Ap --include '@packages/*' run $@",
"add-workspace": "./packages/scripts/add-workspace.sh"
},
"devDependencies": {
"@packages/eslint-config-custom": "workspace:^",
"@packages/tsconfig": "workspace:^",
"@types/eslint": "^8",
"@types/node": "^20.11.20",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.3",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
}
}