generated from ChainSafe/yarn-workspaces-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 960 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
33
34
35
36
{
"name": "root",
"private": true,
"author": "ChainSafe <[email protected]>",
"license": "(MIT)",
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"web",
"docs"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "yarn workspaces foreach -Avpt --topological-dev run build",
"lint": "yarn workspaces foreach -Avpt run lint && yarn lint:docs",
"lint:docs": "prettier --check ./docs",
"format:docs": "prettier --write ./docs",
"test:unit": "yarn workspaces foreach -Avpt run test:unit",
"test:integrations": "yarn workspaces foreach -Avpt run test:integrations"
},
"devDependencies": {
"@chainsafe/eslint-config": "^2.2.4",
"@rushstack/eslint-patch": "^1.10.4",
"@types/eslint": "^8.56.11",
"@types/node": "18.19.42",
"eslint": "8.57.0",
"typescript": "^5.0.3",
"prettier": "^3.4.2"
},
"volta": {
"node": "20.17.0",
"yarn": "4.3.1"
}
}