-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
82 lines (82 loc) · 3.22 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
81
82
{
"name": "odis",
"version": "3.0.0",
"author": "Celo",
"license": "SEE LICENSE IN SUB-PACKAGES",
"private": true,
"scripts": {
"preinstall": "git config --global url.\"https://\".insteadOf ssh://",
"lint": "yarn workspaces foreach -piv --all run lint",
"lint:do-not-merge": "git grep -E 'DO[ _]*NOT[ _]*MERGE'",
"prettify": "yarn run prettier --config .prettierrc.js --write '**/*.+(ts|js)'",
"prettify:diff": "yarn run prettier --config .prettierrc.js --list-different '**/*.+(ts|js)'",
"reset": "yarn reset-modules && yarn reset-cache",
"reset-cache": "yarn reset-yarn && yarn reset-rn",
"reset-modules": "rm -rf node_modules/",
"reset-yarn": "yarn cache clean",
"test": "yarn workspaces foreach --all run test",
"test:fast": "yarn workspaces foreach -ip --since --exclude '{odis,apps/combiner}' run test",
"build": "yarn workspaces foreach --all -pitv run build",
"build:fast": "yarn workspaces foreach -pitv --since run build",
"clean": "yarn workspaces foreach --all -piv run clean",
"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'",
"test:watch": "node node_modules/jest/bin/jest.js --watch",
"cs": "yarn changeset",
"bump": "yarn changeset version",
"release": "yarn build && yarn cs publish",
"version_and_reinstall": "yarn changeset version && yarn install --no-immutable --no-check-resolutions",
"beta-enter": "bash scripts/beta-mode.sh",
"beta-exit": "yarn cs pre exit && git commit -am 'Complete beta releasing'",
"postinstall": "yarn husky install && yarn workspaces foreach --all -piv run postinstall"
},
"workspaces": [
"packages/*",
"apps/*",
"docs/examples"
],
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@tsconfig/node18": "^18.2.2",
"@tsconfig/recommended": "^1.0.3",
"@types/jest": "^29.5.7",
"@types/node": "18.7.16",
"@types/prompt": "1.1.7",
"@types/semver": "7.5.4",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"codecov": "^3.6.5",
"colors": "1.4.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"patch-package": "^6.2.2",
"prettier": "^3.0.3",
"prompt": "1.3.0",
"semver": "7.5.4",
"solc": "0.8.22",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.8.0",
"typescript": "^5.2.2"
},
"resolutions": {
"bip39": "https://github.com/bitcoinjs/bip39#d8ea080a18b40f301d4e2219a2991cd2417e83c2",
"blind-threshold-bls": "npm:@celo/[email protected]",
"ganache": "npm:@celo/[email protected]",
"@types/bn.js": "4.11.6",
"bignumber.js": "9.0.0",
"crypto-js": "4.2.0",
"flat": "5.0.1",
"protobufjs": "7.2.4",
"@babel/traverse": "7.23.2",
"node-fetch": "2.6.7",
"get-func-name": "2.0.1",
"minimatch": "3.0.5",
"async": "2.6.4",
"browserify-sign": "4.2.2"
},
"packageManager": "[email protected]"
}