-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
49 lines (49 loc) · 1.56 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
{
"name": "epns-protocol-staging",
"version": "1.0.0",
"description": "Staging Smart Contracts of EPNS Protocol",
"main": "app.js",
"author": "Ethereum Push Notification Service",
"license": "ISC",
"bugs": {
"url": "https://github.com/ethereum-push-notification-service/epns-protocol-staging/issues"
},
"homepage": "https://github.com/ethereum-push-notification-service/epns-protocol-staging#readme",
"scripts": {
"start": "node app.js",
"chain": "hardhat node --network hardhat",
"test": "hardhat test --network hardhat",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.js && hardhat run scripts/publish.js",
"watch": "node scripts/watch.js",
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"send": "hardhat send"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "3.4.0",
"@openzeppelin/contracts-upgradeable": "3.4.0",
"bip39": "3.0.3",
"chai": "^4.3.4",
"chalk": "^4.1.1",
"dotenv": "10.0.0",
"eip-712": "0.4.2",
"envfile": "6.14.0",
"ethereum-waffle": "^4.0.10",
"ethereumjs-wallet": "1.0.1",
"ethers": "^5.1.4",
"hardhat": "^2.12.6",
"hardhat-gas-reporter": "^1.0.4",
"node-watch": "^0.7.1",
"solidity-bytes-utils": "^0.8.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.4",
"hardhat-contract-sizer": "^2.8.0",
"moment": "^2.29.1",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17"
}
}