forked from circlefin/stablecoin-evm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.1 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
{
"name": "centre-tokens",
"version": "1.0.0",
"description": "Fiat and non-fiat tokens part of the CENTRE network.",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"setup": "git config core.hooksPath .githooks",
"compile": "truffle compile",
"console": "truffle console",
"typechain": "yarn compile && rm -rf './@types/generated' && typechain --target=truffle-v5 --outDir './@types/generated' 'build/contracts/**/*.json'",
"typecheck": "tsc -p . --noEmit",
"lint": "eslint --ext '.js,.ts' './**/*.{j,t}s'",
"fmt": "prettier --write './**/*.sol' './**/*.js' './**/*.ts' './**/*.json' './**/*.md'",
"ganache": "ganache-cli --accounts=15 --deterministic --defaultBalanceEther=1000000 --quiet -l 67219750",
"test": "truffle test",
"coverage": "truffle run coverage",
"solhint": "solhint 'contracts/**/*.sol'",
"precommit": "yarn typechain && yarn fmt && yarn typecheck && yarn lint && yarn solhint",
"slither": "slither --solc-disable-warnings --disable-color --exclude-dependencies .",
"clean": "truffle networks --clean",
"deployContracts": "truffle migrate --interactive --to 2",
"blacklistSeed": "truffle migrate --interactive -f 3 --to 4",
"minters": "truffle migrate --interactive -f 5 --to 6",
"coldStorage": "truffle migrate --interactive -f 7 --to 8",
"verify": "truffle run verify FiatTokenProxy FiatTokenV2_1 MasterMinter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/centrehq/centre-tokens.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/centrehq/centre-tokens/issues"
},
"homepage": "https://github.com/centrehq/centre-tokens#readme",
"dependencies": {
"bip39": "^3.0.4",
"yarn": "^1.22.18"
},
"devDependencies": {
"@openzeppelin/contracts": "^3.1.0",
"@truffle/hdwallet-provider": "^1.5.0",
"@typechain/truffle-v5": "^2.0.2",
"@types/chai": "^4.2.11",
"@types/lodash": "^4.14.158",
"@types/mocha": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"assert-diff": "1.2.6",
"chai": "^4.2.0",
"diff": "^4.0.2",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.0.3",
"ethereumjs-wallet": "0.6.5",
"ganache-cli": "^6.12.2",
"googleapis": "^55.0.0",
"lodash": "^4.17.19",
"prettier": "2.0.5",
"prettier-plugin-solidity": "1.0.0-alpha.54",
"q": "^1.5.1",
"solc": "0.6.12",
"solhint": "^3.1.0",
"solidity-coverage": "^0.7.9",
"truffle": "^5.1.35",
"truffle-plugin-verify": "^0.5.25",
"ts-node": "^8.10.2",
"typechain": "^2.0.0",
"typescript": "^3.9.7",
"web3": "^1.2.11"
},
"engines": {
"node": ">= 12.0.0",
"yarn": ">= 1.21.1"
}
}