-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 837 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
32
{
"name": "monorepo-nextjs",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach -p --topological-dev -v run build",
"test": "yarn workspaces foreach -ptv run test-unit",
"lint": "yarn workspaces foreach -ptv run lint --color",
"typecheck": "yarn workspaces foreach -ptv run typecheck"
},
"devDependencies": {
"@types/prettier": "2.7.2",
"@types/shell-quote": "1.7.1",
"eslint": "8.31.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"lint-staged": "13.1.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.1",
"rimraf": "3.0.2",
"shell-quote": "1.7.4",
"typescript": "4.9.4"
},
"engines": {
"node": "^14.13.1 || >=19.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"packageManager": "[email protected]"
}