-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.43 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
{
"version": "1.0.0",
"name": "@sonne-finance/staking",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "hardhat compile && tsc --project ./tsconfig.json",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"dev": "remixd -s $(pwd) --remix-ide https://remix.ethereum.org"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.4.1",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@openzeppelin/hardhat-upgrades": "^2.2.1",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.9",
"dotenv": "^16.3.1",
"ethers": "^6.7.1",
"hardhat": "^2.17.2",
"hardhat-deploy": "^0.11.37",
"hardhat-deploy-ethers": "^0.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"directories": {
"test": "test",
"client": "client"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"dependencies": {
"@eth-optimism/core-utils": "^0.13.0"
}
}