forked from Zajno/common-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.08 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.08 KB
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
{
"name": "@zajno/common-monorepo",
"description": "Monorepo package for ruling all of them",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "time npm run build:clean --workspaces --if-present",
"lint": "time npm run lint --workspaces --if-present",
"test": "time npm run test --workspaces --if-present",
"update-exports": "time npm run update-exports --workspaces --if-present",
"publish:local:all": "time npm run publish:local --workspaces --if-present",
"all": "time (npm i && npm run update-exports && npm run build && npm run lint && npm run test)",
"fix-esm-paths": "fix-esm-import-path packages/*/src"
},
"devDependencies": {
"@faker-js/faker": "^9.9.0",
"@types/node": "^24.0.0",
"@vitest/coverage-istanbul": "^3.2.4",
"cpy-cli": "^5.0.0",
"fast-check": "^3.23.2",
"fix-esm-import-path": "^1.10.3",
"jest-extended": "^6.0.0",
"rimraf": "^6.0.1",
"scripty": "^2.1.1",
"vitest": "^3.2.4"
}
}