-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
79 lines (79 loc) · 2.68 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
{
"name": "wrapped-tokens",
"version": "1.0.0",
"description": "Wrapped tokens.",
"license": "MIT",
"scripts": {
"setup": "git config core.hooksPath .githooks",
"compile": "npx hardhat compile",
"typechain": "yarn compile && npx hardhat typechain",
"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",
"test": "npx hardhat test",
"coverage": "npx hardhat 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 ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/coinbase/wrapped-tokens-os.git"
},
"devDependencies": {
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^3.1.0",
"@openzeppelin/test-helpers": "^0.5.13",
"@openzeppelin4.2.0/contracts": "npm:@openzeppelin/contracts@^4.2.0",
"@truffle/hdwallet-provider": "^1.0.39",
"@typechain/hardhat": "^2.3.0",
"@typechain/truffle-v5": "^5.0.0",
"@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",
"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",
"ganache-cli": "^6.12.2",
"googleapis": "^55.0.0",
"hardhat": "^2.2.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.9.1",
"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",
"ts-generator": "^0.1.1",
"ts-node": "^8.10.2",
"typechain": "^5.1.2",
"typescript": "^3.9.7",
"web3": "^1.2.11"
},
"engines": {
"node": ">= 12.0.0",
"yarn": ">= 1.21.1"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"ethers": "^5.0.0",
"centre-tokens": "https://github.com/centrehq/centre-tokens.git#v2.1.0"
}
}