forked from mstable/mStable-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 3.11 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
{
"name": "mstable-contracts",
"version": "1.0.0",
"private": true,
"description": "mStable Contracts",
"author": "Stability Labs Pty. Ltd. <[email protected]>",
"license": "AGPL-3.0-or-later",
"scripts": {
"migrate": "truffle migrate --network development --reset",
"migrate:ropsten": "truffle migrate --network ropsten --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": "node --max_old_space_size=6144 node_modules/.bin/buidler coverage --network coverage --solcoverjs ./.solcover.js --testfiles 'test/**/Test*.ts' --show-stack-traces",
"script": "yarn truffle exec ./scripts/main.js",
"test": "yarn run test-prep; yarn buidler test;",
"test:fork": "yarn run test-prep; yarn buidler test --network fork;",
"test-prep": "yarn run compile; yarn run generate-typings;",
"test-lite": " yarn buidler test",
"compile": "yarn buidler compile --force",
"generate-typings": "rimraf ./types/generated && typechain --target 'truffle-v5' --outDir types/generated './build/contracts/*.json'",
"prettify": "prettier --write test/*.ts test/**/*.ts types/generated/*.ts types/*.ts artifacts/*.ts",
"flatten": "sol-merger \"./contracts/**/*.sol\" ./_flat"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mstable/mstable-contracts.git"
},
"devDependencies": {
"@nomiclabs/buidler-truffle5": "^1.3.4",
"@nomiclabs/buidler-web3": "^1.3.4",
"@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",
"buidler-gas-reporter": "0.1.4-beta.4",
"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",
"solidity-coverage": "^0.7.9",
"truffle": "5.1.22",
"truffle-plugin-verify": "^0.3.10",
"truffle-typings": "^1.0.8",
"typechain": "^2.0.0",
"types-ethereumjs-util": "^0.0.8",
"typescript": "^3.6.3",
"web3": "^1.2.6",
"web3-utils": "1.2.6"
},
"dependencies": {
"@nomiclabs/buidler": "^1.3.8",
"sol-merger": "^3.0.1",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0"
},
"_moduleAliases": {
"@utils": "transpiled/test-utils"
}
}