-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
66 lines (66 loc) · 2.07 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@turnkey/oss",
"private": true,
"description": "Public monorepo for Turnkey SDK & API",
"scripts": {
"changeset": "changeset",
"prebuild-all": "pnpm run -w clean-all",
"version": "pnpm run --r --filter \"./packages/**\" version",
"build-all": "pnpm run --r --filter \"./packages/**\" build",
"build:watch": "tsc --build tsconfig.mono.json --watch",
"csb:install": "corepack enable && pnpm install -r",
"csb:build": "pnpm run build-all",
"clean-all": "pnpm run -r clean",
"prettier-all:check": "prettier --check \"**/*.{css,html,js,json,md,ts,tsx,yaml,yml}\" --ignore-path ./.prettierignore",
"prettier-all:write": "prettier --write \"**/*.{css,html,js,json,md,ts,tsx,yaml,yml}\" --ignore-path ./.prettierignore",
"test-all": "pnpm run -r --no-bail test",
"typecheck-all": "pnpm run -r typecheck"
},
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0",
"npm": "^8.0.0",
"pnpm": "^8.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@jest/globals": "^29.3.1",
"@jest/types": "^29.3.1",
"@rollup/plugin-typescript": "^11.1.5",
"@tsconfig/node16-strictest": "^1.0.4",
"@turnkey/jest-config": "workspace:*",
"@types/node": "^18.18.2",
"jest": "^29.3.1",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"rollup": "^4.22.4",
"rollup-plugin-node-externals": "^6.1.2",
"tsx": "^3.12.7",
"typescript": "^5.1.4"
},
"packageManager": "pnpm@8.4.0",
"pnpm": {
"auditConfig": {
"ignoreCves": [
"CVE-2023-42282",
"CVE-2024-39338"
]
},
"overrides": {
"@confio/ics23@0.6.8>protobufjs": ">=7.2.5",
"protobufjs@>=6.10.0 <7.2.5": ">=7.2.5",
"@babel/traverse": ">=7.23.2",
"follow-redirects": ">=1.15.4",
"web3": ">=4.2.1",
"web3-core": ">=4.2.1",
"web3-utils": ">=4.2.1",
"braces": ">=3.0.3",
"ws": ">=8.17.1",
"fast-xml-parser": ">=4.4.1",
"semver": ">=6.3.1",
"path-to-regexp@<0.1.10": ">=0.1.10",
"secp256k1": ">=4.0.4",
"cross-spawn": ">=7.0.5"
}
}
}