-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
85 lines (85 loc) · 3.46 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
83
84
85
{
"name": "contracts-ragnarok",
"version": "1.0.0",
"description": "TrueFi Smart Contracts",
"scripts": {
"postinstall": "patch-package",
"flatten": "./utils/bash/flatten.sh",
"clean": "rm -rf ./build",
"typecheck": "tsc --noEmit",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier 'contracts/**/*.sol' --check --loglevel error",
"lint:ts": "eslint '{test,scripts}/**/*.ts' -c .eslintrc.json --cache",
"lint": "pnpm run lint:sol && pnpm run lint:ts",
"lint:fix": "prettier 'contracts/**/*.sol' --write --loglevel error && pnpm run lint:ts --fix",
"build:sol": "waffle .waffle.json",
"build:types": "typechain --target ethers-v5 --outDir build/types 'build/*.json' > /dev/null && echo 'Typechain generated'",
"build:waffle": "pnpm run clean && pnpm run build:sol && pnpm run build:types && bash ./utils/bash/indexBuild.sh",
"build:verify": "ts-node ./spec/generateConfigs.ts",
"build:merge-deployments": "ts-node ./scripts/deployment/mergeDeployments.ts",
"build": "pnpm run clean && hardhat compile && bash ./utils/bash/indexBuild.sh && pnpm run build:merge-deployments && mars",
"test": "mocha 'test/**/*.test.ts'",
"test:gas-reporter": "REPORT_GAS=true hardhat test",
"codechecks": "codechecks ../../codechecks.yml",
"checks": "pnpm run lint && pnpm run typecheck && pnpm run test",
"verify": "bash ./spec/verify.sh",
"verify:sanity": "bash ./spec/verify.sh -s",
"playground": "ts-node ./scripts/playground/ragnarok/run.ts",
"deploy": "bash ./utils/bash/marsDeploy.sh scripts/deployment/ragnarok.ts",
"deploy:dryrun": "pnpm run deploy --dry-run --yes",
"slither": "./slither.sh",
"coverage": "bash ./utils/bash/runCoverage.sh",
"whitelist:factory": "ts-node ./scripts/helpers/whitelist/run.ts",
"whitelist:global": "ts-node ./scripts/helpers/whitelistGlobalVerifier/run.ts",
"bulletloan": "ts-node ./scripts/helpers/createBulletLoan/run.ts"
},
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@codechecks/client": "0.1.13-beta-1",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@typechain/ethers-v5": "^10.0.0",
"@types/argparse": "~2.0.10",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"argparse": "~2.0.1",
"chai": "^4.2.0",
"dotenv": "~10.0.0",
"eslint": "^7.32.0",
"ganache": "^7.0.4",
"hardhat-gas-reporter": "^1.0.7",
"mocha": "^8.2.1",
"node-fetch": "^2.6.1",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.8.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solc-0.8": "npm:solc@0.8.10",
"solhint": "^3.0.0",
"solidity-coverage": "0.7.16",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.9.0",
"typescript": "4.9.4"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@openzeppelin/contracts": "4.4.0",
"@openzeppelin/contracts-upgradeable": "4.4.1",
"@typechain/hardhat": "^6.0.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"ethereum-mars": "0.2.5-dev.118b270",
"ethereum-waffle": "4.0.10",
"ethers": "^5.7.0",
"hardhat": "^2.9.2",
"hardhat-waffle-dev": "2.0.3-dev.c5b5c29",
"solc": "^0.8.12",
"ts-generator": "^0.1.1",
"typechain": "^8.0.0"
},
"resolutions": {
"**/@resolver-engine/core": "^0.3.3"
}
}