-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "loot-rift",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"claim": "yarn compile && node ./scripts/claim.js",
"quest": "yarn compile && node ./scripts/quest.js",
"claim:quick": "node ./scripts/claim.js",
"compile": "truffle compile",
"coverage": "truffle run coverage",
"develop": "truffle develop",
"gas": "yarn compile && node ./scripts/gas.js",
"gas:quick": "node ./scripts/gas.js",
"lint": "solium -d contracts/",
"meta": "yarn compile && node ./scripts/meta.js",
"stats": "yarn compile && node ./scripts/stats.js",
"stats:quick": "node ./scripts/stats.js",
"test": "yarn compile && mocha --exit --recursive",
"test:quick": "mocha --exit --recursive",
"test:watch": "yarn compile && mocha --watch --recursive"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.13",
"@openzeppelin/truffle-upgrades": "^1.11.0",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"open": "^8.2.1",
"solidity-coverage": "^0.7.17",
"truffle": "^5.4.8",
"truffle-assertions": "^0.9.2",
"truffle-plugin-verify": "^0.5.18"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.1",
"@openzeppelin/contracts-upgradeable": "^4.4.1",
"@truffle/hdwallet-provider": "^1.6.0",
"dotenv": "^10.0.0",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.1.4",
"truffle-hdwallet-provider": "^1.0.17",
"web3": "^1.7.1"
}
}