-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
108 lines (108 loc) · 4.38 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "babelfishprotocol",
"version": "1.0.0",
"description": "babelfish Contracts",
"license": "AGPL-3.0-or-later",
"files": [
"/contracts/**/*.sol",
"!/contracts/z_mocks",
"/build/contracts/**/*.json",
"/test-utils/**/*.ts",
"/types/**/*.ts"
],
"scripts": {
"deploy": "yarn hardhat deploy --network development --reset --tags migration",
"deploy:rinkeby": "yarn hardhat deploy --network rinkeby --reset --tags migration",
"deploy:ropsten": "yarn hardhat deploy --network ropsten --reset -tags migration",
"deploy:kovan": "yarn hardhat deploy --network kovan --reset -tags migration",
"deploy:rskDev": "yarn hardhat deploy --network rskDev --reset --tags migration",
"deploy:rskTestnet": "yarn hardhat deploy --network rskTestnet --reset --tags migration",
"deploy-governance": "yarn hardhat deploy --network development --reset --tags governance",
"deploy-governance:ropsten": "yarn hardhat deploy --network ropsten --reset --tags governance",
"deploy-governance:kovan": "yarn hardhat deploy --network kovan --reset --tags governance",
"deploy-governance:rskTestnet": "yarn hardhat deploy --network rskTestnet --reset --tags governance",
"deploy-mynt-token": "yarn hardhat deploy --network development --reset --tags myntToken",
"deploy-fish-token": "yarn hardhat deploy --network development --reset --tags fishToken",
"lint": "yarn run lint-ts; yarn run lint-sol",
"lint-ts": "yarn eslint ./test --ext .ts,.js --fix --quiet",
"lint-sol": "solium -d contracts/ --fix ",
"coverage": "node --max_old_space_size=6144 node_modules/.bin/hardhat coverage --temp 'build/contracts' --testfiles 'test/[^e2e]*/*.ts' --show-stack-traces",
"test": "node --max_old_space_size=4096 node_modules/.bin/hardhat test;",
"test-file": "yarn hardhat test",
"test:fork": "yarn run compile; yarn hardhat test --network fork;",
"compile": "yarn hardhat compile --force",
"init": "yarn install && TS_NODE_TRANSPILE_ONLY=1 yarn hardhat compile --force",
"contract-sizes": "yarn hardhat size-contracts",
"prettify": "prettier --write test/*.ts test/**/*.ts types/generated/*.ts types/*.ts artifacts/*.ts",
"flatten": "sol-merger \"./contracts/[^fish]**/*.sol\" ./_flat",
"prepublishOnly": "yarn run compile",
"docgen": "yarn hardhat compile --force && yarn run hardhat docgen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mstable/mstable-contracts.git"
},
"devDependencies": {
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "2.5.0",
"@openzeppelin/test-helpers": "0.5.11",
"@openzeppelin/upgrades": "2.7.2",
"@typechain/truffle-v5": "^2.0.0",
"@types/bn.js": "^4.11.6",
"@types/chai": "^4.2.2",
"@types/lodash": "^4.14.138",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.5",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"chai": "^4.2.0",
"chai-bn": "^0.2.0",
"chai-core": "^5.0.0-alpha.0",
"chalk": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"ethlint": "^1.2.5",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.8.11",
"hardhat-docgen": "^1.1.1",
"humanize-duration": "^3.21.0",
"mocha": "^7.0.1",
"parse-duration": "^0.1.2",
"prettier": "^1.18.2",
"solc": "0.5.16",
"typechain": "^4.0.0",
"types-ethereumjs-util": "^0.0.8",
"typescript": "^3.6.3",
"web3": "^1.2.6",
"web3-utils": "1.2.6"
},
"dependencies": {
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@tenderly/hardhat-tenderly": "^1.0.3",
"hardhat": "^2.0.3",
"hardhat-gas-reporter": "^1.0.1",
"hardhat-typechain": "^0.3.3",
"node-logs": "^1.1.0",
"sol-merger": "^3.0.1",
"solidity-coverage": "^0.7.12",
"ts-generator": "^0.1.1",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0"
},
"_moduleAliases": {
"@utils": "transpiled/test-utils"
},
"bugs": {
"url": "https://github.com/mstable/mstable-contracts/issues"
},
"homepage": "https://github.com/mstable/mstable-contracts#readme",
"directories": {
"test": "test"
}
}