This repository was archived by the owner on Dec 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.88 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.88 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
{
"name": "@mobius-money/mobius-proposal-registry",
"private": true,
"version": "0.0.1",
"main": "index.js",
"repository": "git@github.com:MobiusAMM/mobius-proposal-registry.git",
"author": "Kyle Scott <kyle@dahlia.finance>",
"license": "AGPL-3.0",
"packageManager": "yarn@3.2.1",
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.3",
"@saberhq/eslint-config": "^1.13.6",
"@types/bn.js": "^5.1.0",
"@types/eslint": "^8.4.2",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.33",
"@types/prettier": "^2.6.1",
"eslint": "^8.15.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "4.6.4"
},
"dependencies": {
"@dahlia-labs/celo-contrib": "^0.4.1",
"@ethersproject/abi": "^5.6.2",
"@ethersproject/address": "^5.6.0",
"@ethersproject/bignumber": "^5.6.1",
"@ethersproject/bytes": "^5.6.1",
"@ethersproject/constants": "^5.6.0",
"@ethersproject/contracts": "^5.6.1",
"@ethersproject/providers": "^5.6.6",
"@saberhq/tsconfig": "^1.13.6",
"@typechain/ethers-v5": "^10.0.0",
"@yarnpkg/doctor": "^3.1.3",
"bn.js": "^5.2.0",
"ethers": "^5.6.6",
"jsbi": "^4.3.0",
"lodash": "^4.17.21",
"tiny-invariant": "^1.2.0",
"typechain": "^8.0.0"
},
"scripts": {
"registry:sync": "ts-node src/fetchAllProposals.ts",
"typechain": "typechain --target=ethers-v5 'src/abis/*.json' --out-dir src/generated/",
"prepare": "husky install",
"build": "tsc",
"typecheck": "tsc",
"lint": "eslint . --cache",
"lint:ci": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"doctor:packages": "yarn doctor packages/"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{md,json,js,yml,yaml}": "prettier --write"
}
}