-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.5 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.5 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@argonprotocol/mainchain-monorepo",
"version": "0.0.3",
"scripts": {
"tsc": "yarn workspaces foreach --all run tsup",
"typecheck": "yarn workspaces foreach --all run typecheck",
"build": "yarn workspaces foreach --all run build && yarn lint",
"pretest": "yarn workspaces foreach --all run pretest",
"pretest:ci": "yarn workspaces foreach --all run pretest:ci",
"lint": "yarn prettier --write \"**/*.{ts,js,json,md}\"",
"eslint": "eslint . --ext .ts --cache --fix",
"test": "yarn pretest && vitest --run --typecheck",
"test:ci": "yarn pretest:ci && vitest --run",
"version:bump": "npx lerna version $VERSION --no-push --no-git-tag-version --exact --yes"
},
"private": true,
"engines": {
"node": ">= 18"
},
"workspaces": [
"bitcoin/nodejs",
"localchain",
"localchain/npm/*",
"client/nodejs",
"testing/nodejs"
],
"devDependencies": {
"@lerna-lite/version": "^3.12.3",
"@types/node": "22.17.1",
"@vitest/ui": "^4.0.5",
"eslint": "9.33.0",
"eslint-config-prettier": "10.1.8",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"prettier-eslint-cli": "8.0.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.12",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^4.0.5"
},
"resolutions": {
"axios": "^1.12.0",
"@octokit/plugin-paginate-rest": "^11.4.1",
"form-data": "^2.5.4",
"request": "^2.88.2",
"tough-cookie": "^4.1.4"
},
"packageManager": "yarn@4.1.1"
}