-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 829 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": "circleci-lerna-cpu-count-problem",
"private": true,
"version": "0.0.0",
"description": "",
"scripts": {
"build": "lerna run build --",
"test": "lerna run test --",
"// comment on ci:build": "For CircleCI builds on docker, lerna can't calc the number of CPUs and we have to tell it how many to use.",
"ci:build": ".circleci/ci_lerna.sh run ci:build --",
"preci:test": "mkdir -p junit-reports",
"ci:test": ".circleci/ci_lerna.sh run ci:test --"
},
"workspaces": [
"app-one",
"app-two"
],
"volta": {
"node": "16.18.0",
"npm": "8.19.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.26.0",
"jest": "^29.2.1",
"jest-junit": "^15.0.0",
"lerna": "^6.1.0"
}
}