-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
80 lines (80 loc) · 3.09 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@openzeppelin/defender-sdk",
"version": "0.0.0",
"private": true,
"description": "The OpenZeppelin Defender Software Development Kit",
"dependencies": {
"@actions/exec": "^1.1.1",
"axios": "^1.7.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@npmcli/fs": "3.1.0",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.6",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"code-style": "git+https://github.com/OpenZeppelin/configs.git",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"nx": "^19.5.0",
"nx-cloud": "^19.0.0",
"prettier": "^2.4.1",
"ts-jest": "^29.1.2",
"typescript": "^4.9.3"
},
"scripts": {
"install-deps": "pnpm install --frozen-lockfile --ignore-scripts --prefer-offline",
"nx-build-skip-cache": "pnpm run build --skip-nx-cache",
"nx-build-test-skip-cache": "pnpm run build-test --skip-nx-cache",
"nx-test-skip-cache": "pnpm run test --skip-nx-cache",
"ci:version": "pnpm changeset version",
"ci:snapshot": "pnpm changeset version --snapshot rc-snapshot",
"sort:networks": "node hack/sortNetworks.js && prettier -u -w packages/base/src/utils/network*.ts",
"build": "nx run-many -t build --parallel=1 --output-style=static",
"build-test": "nx run-many -t style,build,test --projects=@openzeppelin/defender-base-client,* --parallel=false --output-style=static",
"lint:check": "eslint 'packages/**/src/**/*.{js,ts}' --quiet",
"lint:fix": "pnpm prettier:fix && pnpm lint:check && pnpm prettier:check",
"prettier:check": "prettier -u --check '**/*.{js,ts,tsx,md}' '!**/.nx/**'",
"prettier:fix": "prettier -u --write '**/*.{js,ts,tsx,md}' '!**/.nx/**'",
"test": "nx run-many -t test --exclude=e2e --parallel=1 --output-style=static",
"test:e2e": "nx run e2e:test --output-style=static",
"build:changed": "nx affected:build --base=origin/main --skip-nx-cache --parallel=1 --output-style=static",
"test:changed": "nx affected:test --base=origin/main --skip-nx-cache --parallel=1 --output-style=static",
"style": "pnpm lint:fix",
"skip-lib-ignore": "./hack/skip-lib-ignore.sh",
"release": "node ./scripts/release.js",
"snapshot": "node ./scripts/snapshot.js",
"install-pnpm": "npm install -g pnpm"
},
"repository": {
"type": "git",
"url": "https://github.com/OpenZeppelin/defender-sdk.git"
},
"author": "OpenZeppelin Defender <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenZeppelin/defender-sdk/issues"
},
"engines": {
"node": "20.11.1",
"npm": "use pnpm",
"pnpm": ">=9",
"yarn": "use pnpm"
},
"homepage": "https://github.com/OpenZeppelin/defender-sdk#readme",
"resolutions": {
"@ethersproject/abstract-provider": "^5.6.1",
"ws": "^8.17.0",
"braces": "^3.0.3",
"es5-ext": "^0.10.64",
"semver": "^7.6.2",
"tough-cookie": "^4.0.0",
"tar": "^6.2.1"
}
}