-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.14 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
{
"name": "contracts-challenge",
"version": "1.0.0",
"description": "Edge & Node Contracts Challenge",
"main": "index.js",
"repository": "[email protected]:millsmcilroy/contracts-challenge.git",
"author": "Mills McIlroy <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"@truffle/hdwallet-provider": "^2.0.8",
"bignumber.js": "^9.0.2",
"dotenv": "^16.0.1",
"ethers": "^5.6.8",
"truffle-assertions": "^0.9.2",
"web3": "^1.7.3"
},
"devDependencies": {
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"prettier": "^2.6.2",
"solc": "^0.8.14-fixed",
"truffle-plugin-stdjsonin": "https://github.com/mhrsalehi/truffle-plugin-stdjsonin/"
}
}