-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
62
{
"name": "eth-deploy-utils",
"version": "3.0.0",
"description": "(Very opinionated, suddenly-changing and speed versioning) ETH Deploy Utils",
"publishConfig": {
"access": "public"
},
"files": [
"/index.js",
"/src/**/*.js",
"/README.md"
],
"main": "index.js",
"scripts": {
"clean": "rimraf artifacts cache coverage coverage.json",
"test": "NODE_ENV=test npx hardhat test",
"compile": "hardhat compile",
"lint": "prettier --write 'contracts/**/*.sol' && solhint 'contracts/**/*.sol' && npx prettier --write ./test/**/*.js ./**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sullof/deploy-utils.git"
},
"author": {
"name": "Francesco Sullo",
"email": "[email protected]"
},
"contributors": [
{
"name": "Andy Craven",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/sullof/deploy-utils/issues"
},
"homepage": "https://github.com/sullof/deploy-utils#readme",
"license": "MIT",
"dependencies": {
"@ethersproject/contracts": "^5.7.0",
"@openzeppelin/hardhat-upgrades": "^3.2.1",
"ethereumjs-abi": "^0.6.8",
"fs-extra": "^11.2.0",
"hardhat": "^2.22.10",
"require-or-mock": "^0.2.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/test-helpers": "^0.5.16",
"chai": "^4.5.0",
"dotenv": "^16.4.5",
"ethers": "^6.0.0",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"pretty-quick": "^4.0.0",
"rimraf": "^5.0.10",
"solhint": "^5.0.3",
"typescript": "^5.5.4"
}
}