-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 806 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 806 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
26
{
"private": true,
"name": "monorepo",
"type": "module",
"scripts": {
"build": "pnpm exec nx run-many --nx-bail --target=build --parallel",
"test": "pnpm exec nx run-many --target=test --parallel",
"lint": "pnpm exec nx run-many --target=lint --parallel",
"format": "pnpm exec nx run-many --target=format --parallel",
"clean": "pnpm recursive run clean && rm -rf ./.env ./node_modules",
"----- CI ---- used to test the codebase on every commit": "",
"ci": "pnpm build && pnpm lint && pnpm test"
},
"packageManager": "pnpm@10.23.0",
"engines": {
"node": ">=22",
"pnpm": ">=10 <11"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@vitest/coverage-v8": "^3.1.1",
"nx": "^21.0.0",
"nx-cloud": "^19.1.0",
"vitest": "^3.1.1"
}
}