-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.76 KB
/
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
37
38
39
40
41
42
43
44
45
46
{
"name": "stakingbrain",
"type": "module",
"private": true,
"engines": {
"node": ">=20.11.0"
},
"workspaces": [
"packages/*"
],
"version": "1.0.0",
"repository": "https://github.com/dappnode/StakingBrain.git",
"author": "DappNode Association",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.3",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"chai": "^5.1.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"rimraf": "^4.1.1",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
},
"scripts": {
"build": "yarn workspaces foreach --all -pt run build",
"test": "yarn workspaces foreach --all -pt run test",
"dev": "yarn workspaces foreach --all -pi -j unlimited run dev",
"lint": "eslint 'packages/**/src/**/*.{js,ts,tsx}' 'packages/**/test/**/*.{js,ts,tsx}' --ignore-pattern 'packages/common/src/validation/schemas/**/*.{js,ts,tsx}'",
"lint:fix": "eslint 'packages/**/src/**/*.{js,ts,tsx}' 'packages/**/test/**/*.{js,ts,tsx}' --fix --ignore-pattern 'packages/common/src/validation/schemas/**/*.{js,ts,tsx}'",
"format": "prettier --write 'packages/**/src/**/*.{js,ts,tsx,json,md}' 'packages/**/test/**/*.{js,ts,tsx,json,md}'",
"clean": "yarn run clean:build && yarn run clean:libraries",
"clean:libraries": "rimraf packages/**/node_modules && rimraf node_modules",
"clean:build": "rimraf packages/**/dist && rimraf packages/**/build"
},
"packageManager": "yarn@4.4.1"
}