-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.16 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.16 KB
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
{
"name": "@aut-labs/contracts",
"version": "0.0.1",
"description": "",
"main": "index.js",
"files": [
"/contracts/**/*.sol",
"/contracts/**/**/*.sol"
],
"scripts": {
"prettier:apply": "prettier --write 'contracts/**/*.sol'",
"prettier:check": "prettier --check 'contracts/**/*.sol'",
"prettier:subgraphs:apply": "prettier --write 'subgraphs/**/*.ts'",
"prettier:subgraphs:check": "prettier --check 'subgraphs/**/*.ts'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@opengsn/contracts": "^3.0.0-beta.1",
"@openzeppelin/contracts": "^5.0.1",
"@openzeppelin/contracts-upgradeable": "^5.0.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@opengsn/contracts": "^3.0.0-beta.1",
"@openzeppelin/hardhat-upgrades": "^1.20.0",
"@typechain/ethers-v5": "^11.1.1",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"ethereum-waffle": "^3.4.4",
"ethers": "5.7.0",
"hardhat": "^2.9.5",
"hardhat-contract-sizer": "^2.1.1",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1"
}
}