-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "ptokens-erc20-vault-smart-contract",
"version": "2.7.0",
"description": "The pToken ERC20 vault smart-contract & CLI",
"main": "cli.js",
"scripts": {
"test": "npm run tests",
"tests": "ENDPOINT=http://localhost:8545 npx hardhat test",
"compile": "npx hardhat compile",
"lint": "npx eslint ."
},
"repository": {
"type": "git",
"url": "[email protected]/provable-things/ptokens-perc20-smart-contract.git"
},
"keywords": [
"provable",
"ethereum",
"defi",
"crypto",
"eos"
],
"author": "Greg Kapka ([email protected])",
"license": "MIT",
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@openzeppelin/hardhat-upgrades": "^1.20.0",
"docopt": "^0.6.2",
"dotenv": "^10.0.0",
"ethers": "^5.7.0",
"hardhat": "^2.10.2",
"hardhat-erc1820": "^0.1.0",
"ptokens-utils": "github:provable-things/ptokens-utils.js#v1.6.0",
"ramda": "^0.27.2",
"rewire": "^5.0.0",
"truffle-flattener": "^1.6.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"ethereum-waffle": "^3.4.4",
"mocha": "^6.2.3"
}
}