-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.79 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
{
"name": "ptokens-erc777-smart-contract",
"version": "3.11.0",
"description": "The pToken ERC777 smart-contract & CLI",
"main": "cli.js",
"scripts": {
"compile": "ENDPOINT=0.0.0.0 npx hardhat compile",
"tests": "ENDPOINT=http://localhost:8545 npx hardhat test",
"test": "npm run tests",
"lint": "npx eslint ./",
"checkStorageCompatibility": "npm run compile && ENDPOINT=0.0.0.0 node ./scripts/check-storage-compatibility"
},
"repository": {
"type": "git",
"url": "github.com/provable-things/pBTC"
},
"keywords": [
"Provable",
"ptokens",
"pnetwork",
"ethereum",
"bitcoin",
"cryptocurrencies",
"crypto",
"defi"
],
"author": "Greg Kapka ([email protected])",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@openzeppelin/gsn-helpers": "^0.2.3",
"@openzeppelin/gsn-provider": "^0.1.10",
"eslint": "^8.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"ethereum-waffle": "^3.4.4"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts-upgradeable": "^3.4.1",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"@truffle/contract": "^4.1.10",
"chai": "^4.2.0",
"docopt": "^0.6.2",
"dotenv": "^10.0.0",
"ethers": "5.5.1",
"hardhat": "^2.6.7",
"hardhat-erc1820": "^0.1.0",
"ptokens-utils": "github:provable-things/ptokens-utils.js#1.3.0",
"ramda": "^0.27.0",
"rewire": "^5.0.0",
"truffle": "^5.1.67",
"truffle-flattener": "^1.5.0"
}
}