forked from balancer/balancer-v3-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.63 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@balancer-labs/v3-monorepo",
"private": true,
"description": "Balancer V3 Monorepo",
"license": "GPL-3.0-only",
"homepage": "https://github.com/balancer-labs/balancer-v3-monorepo#readme",
"repository": "git@github.com:balancer-labs/balancer-v3-monorepo.git",
"bugs": {
"url": "https://github.com/balancer-labs/balancer-v3-monorepo/issues"
},
"engines": {
"node": ">=24"
},
"resolutions": {
"form-data": "^2.5.4",
"pbkdf2": "^3.1.3",
"elliptic": "^6.6.1",
"flat": "^5.0.1",
"@openzeppelin/contracts-upgradeable": "^4.9.6",
"base-x": "^3.0.11",
"cross-spawn": "^7.0.5",
"secp256k1": "^4.0.4",
"ws": "^8.17.1",
"braces": "^3.0.3",
"get-func-name": "^2.0.1",
"semver": "^7.5.2",
"minimatch": "^3.0.5",
"@openzeppelin/contracts": "^5.4.0",
"chalk": "4.1.2",
"strip-ansi": "6.0.1",
"color-convert": "2.0.1",
"color-name": "1.1.4",
"is-core-module": "2.13.1",
"error-ex": "1.3.2",
"has-ansi": "5.0.1",
"sha-js": "2.4.12",
"cipher-base": "1.0.5",
"lodash": "4.17.21"
},
"packageManager": "yarn@4.12.0",
"contributors": [
"Juan Ignacio Ubeira <juani@balancerlabs.dev>",
"Jeffrey Bennett <jeff@balancerlabs.dev>",
"Igor Yalovoy <igor@balancerlabs.dev>",
"João Bruno Abou Hatem de Liz <joao@balancerlabs.dev>",
"Elshan Dzhafarov <elshan@balancerlabs.dev>",
"Nicolás Venturo <nico@balancerlabs.dev>"
],
"scripts": {
"build": "yarn workspaces foreach --all --parallel --jobs unlimited --verbose run build",
"lint": "NODE_NO_WARNINGS=1 yarn workspaces foreach --all --parallel --jobs unlimited --verbose run lint",
"prettier": "yarn workspaces foreach --all --parallel --jobs unlimited --exclude @balancer-labs/v3-common --exclude @balancer-labs/v3-helpers --exclude @balancer-labs/solidity-toolbox --verbose run prettier",
"test": "yarn workspaces foreach --all --parallel --jobs unlimited --verbose run test",
"test:hardhat": "yarn workspaces foreach --all --parallel --jobs unlimited --verbose run test:hardhat",
"test:forge": "yarn workspaces foreach --all --parallel --jobs unlimited --verbose run test:forge",
"coverage": "yarn workspaces foreach --all --verbose run coverage:all",
"gas": "yarn workspaces foreach --all --parallel --jobs unlimited --verbose run gas",
"slither-install": "python3 -m venv slither && bash -c 'source slither/bin/activate && pip3 install https://github.com/crytic/slither/releases/download/0.10.1/0.10.1.zip'",
"slither": "yarn workspaces foreach --all --parallel --jobs unlimited --verbose run slither"
},
"workspaces": [
"pkg/*",
"pvt/*"
]
}