-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.57 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
{
"name": "contracts-beryllium",
"version": "1.0.0",
"description": "TrueFi Beryllium",
"scripts": {
"clean": "rm -rf ./build",
"build:waffle": "waffle",
"build:verify": "ts-node ./spec/generateConfigs.ts",
"build:typechain": "typechain --target ethers-v5 --out-dir build/types 'build/*.json'",
"build:merge-deployments": "ts-node ./scripts/deployment/mergeDeployments.ts",
"build": "pnpm run clean && hardhat compile && bash ./utils/bash/copyJsonsToBuild.sh && bash ./utils/bash/indexBuild.sh && pnpm run build:typechain && pnpm run build:merge-deployments && pnpm exec mars",
"build:mars": "pnpm exec mars",
"deploy": "bash ./utils/bash/marsDeploy.sh scripts/deployment/beryllium.ts",
"deploy:dydx": "bash ./utils/bash/marsDeploy.sh scripts/deployment/dydxBeryllium.ts",
"test": "mocha 'test/**/*.test.ts'",
"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",
"playground": "ts-node scripts/playground/run.ts",
"verify": "bash ./spec/verify.sh",
"verify:sanity": "bash ./spec/verify.sh -s",
"verify:typecheck": "bash ./spec/verify.sh -t",
"flatten": "pnpm exec bash ./utils/bash/flatten.sh",
"createAbis": "ts-node scripts/utils/createAbis.ts"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.34",
"@typescript-eslint/parser": "^5.46.0",
"chai": "^4.3.6",
"eslint": "^7.32.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",
"ganache": "7.1.0",
"hardhat": "^2.9.2",
"hardhat-waffle-dev": "2.0.3-dev.c5b5c29",
"mocha": "^10.0.0",
"prettier": "^2.8.1",
"solc": "^0.8.10",
"solhint": "^3.3.7",
"solidity-coverage": "0.7.16",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.9.0",
"typechain": "^8.0.0",
"typescript": "4.9.4"
},
"dependencies": {
"@openzeppelin/contracts": "4.6.0",
"@openzeppelin/contracts-upgradeable": "4.4.2",
"merkletreejs": "^0.2.31"
}
}