forked from mstable/mStable-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.43 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
{
"name": "@mstable/protocol",
"version": "1.5.0",
"description": "mStable Contracts",
"author": "mStable <[email protected]>",
"license": "AGPL-3.0-or-later",
"files": [
"/contracts/**/*.sol",
"!/contracts/z_mocks",
"/build/contracts/**/*.json",
"/test-utils/**/*.ts",
"/types/**/*.ts"
],
"scripts": {
"migrate": "truffle migrate --network development --reset",
"migrate:ropsten": "truffle migrate --network ropsten --reset",
"migrate:kovan": "truffle migrate --network kovan --reset",
"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": "yarn hardhat compile --force && node --max_old_space_size=6144 node_modules/.bin/hardhat coverage --temp 'build/contracts' --testfiles 'test/**/Test*.ts' --show-stack-traces",
"script": "yarn truffle exec ./scripts/main.js",
"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",
"prettify": "prettier --write test/*.ts test/**/*.ts types/generated/*.ts types/*.ts artifacts/*.ts",
"flatten": "sol-merger \"./contracts/**/*.sol\" ./_flat",
"prepublishOnly": "yarn run compile"
},
"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": "git+https://[email protected]/alsco77/openzeppelin-test-helpers.git",
"@openzeppelin/upgrades": "2.7.2",
"@truffle/hdwallet-provider": "^1.0.34",
"@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",
"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",
"humanize-duration": "^3.21.0",
"mocha": "^7.0.1",
"parse-duration": "^0.1.2",
"prettier": "^1.18.2",
"solc": "0.5.16",
"truffle": "5.1.22",
"truffle-plugin-verify": "^0.3.10",
"truffle-typings": "^1.0.8",
"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",
"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"
}
}