-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "solidity-hardhat-ether.js-base-project",
"version": "0.1.0",
"description": "Solidity Hardhat Ether.js Base Project",
"author": "https://www.linkedin.com/in/ignacioceaglio/",
"license": "MIT",
"keywords": [
"ethereum",
"smart",
"contracts",
"test",
"solidity",
"hardhat"
],
"scripts": {
"deploy": "npx hardhat run scripts/deploy.ts",
"deploy:sepolia": "npx hardhat run --network sepolia scripts/deploy.ts",
"node": "npx hardhat node --network hardhat",
"test": "npx hardhat test --network hardhat"
},
"engines": {
"node": ">=8.10.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0",
"dotenv": "^16.3.1",
"eslint-config-standard": "^17.1.0",
"solidity-docgen": "^0.6.0-beta.36",
"ts-generator": "^0.1.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"hardhat": "^2.22.9",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-spdx-license-identifier": "^2.2.0",
"@types/sinon-chai": "^3.2.3",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}