-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 3.06 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 3.06 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
66
67
68
69
70
71
72
{
"name": "celo",
"version": "1.0.0",
"author": "Celo",
"license": "SEE LICENSE IN SUB-PACKAGES",
"private": true,
"scripts": {
"preinstall": "git config --global url.\"https://\".insteadOf ssh://",
"lint": "yarn run biome lint",
"fmt": "yarn run biome format --write",
"fmt:diff": "yarn run biome format",
"reset": "yarn reset-modules && yarn reset-cache",
"reset-cache": "yarn reset-yarn && yarn reset-rn",
"reset-modules": "rm -rf node_modules/ packages/*/node_modules",
"reset-yarn": "yarn cache clean",
"test": "yarn workspaces foreach -pv --all --exclude celo run test",
"test:watch": "yarn workspaces foreach -piv --since --exclude celo run test --watch",
"test:changes": "yarn test:changes:jest && yarn test:changes:vitest",
"test:changes:jest": "yarn workspaces foreach -piv --since --exclude celo --exclude @celo/viem-account-ledger --exclude @celo/core --exclude @celo/actions run test --onlyChanged --bail=4",
"test:changes:vitest": "yarn workspaces foreach -piv --since --include @celo/viem-account-ledger --include @celo/core --include @celo/actions run test:changes --bail=4",
"build": "yarn workspaces foreach -piv --all --topological-dev run build",
"build:changes": "yarn workspaces foreach -piv --since --topological-dev --exclude celo run build",
"clean": "yarn workspaces foreach -piv --all run clean",
"docs": "yarn workspaces foreach -piv --all run docs",
"cs": "yarn changeset",
"check-licenses": "yarn licenses list --prod | grep '\\(─ GPL\\|─ (GPL-[1-9]\\.[0-9]\\+ OR GPL-[1-9]\\.[0-9]\\+)\\)' && echo 'Found GPL license(s). Use 'yarn licenses list --prod' to look up the offending package' || echo 'No GPL licenses found'",
"report-coverage": "yarn workspaces foreach -piv --all run test-coverage",
"postinstall": "husky install",
"release": "yarn clean && yarn build && yarn workspace @celo/celocli run prepack && yarn cs publish",
"version-then-update-files": "yarn changeset version && yarn install --no-immutable && yarn build && yarn docs",
"celocli": "yarn workspace @celo/celocli run --silent celocli"
},
"workspaces": {
"packages": [
"packages/*",
"packages/sdk/*",
"packages/sdk/wallets/*"
]
},
"devDependencies": {
"@biomejs/biome": "2.0.5",
"@celo/typescript": "workspace:^",
"@changesets/changelog-github": "^0.5.1",
"@types/node": "24.0.0",
"colors": "1.4.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"rimraf": "^4.4.1",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.8.0",
"typedoc": "^0.28.2",
"typedoc-plugin-markdown": "^4.6.3",
"typescript": "5.3.3"
},
"resolutions": {
"web3": "1.10.4",
"web3-utils": "1.10.4",
"blind-threshold-bls": "npm:@celo/blind-threshold-bls@1.0.0-beta",
"@types/bn.js": "4.11.6",
"bignumber.js": "9.0.0"
},
"dependencies": {
"@changesets/cli": "^2.29.5"
},
"packageManager": "yarn@4.0.2",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"provenance": true
}
}