-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "roadfund",
"version": "0.0.1",
"description": "A decentralized feature voting and funding platform for projects on Ethereum.",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"prepare": "husky install"
},
"author": "",
"license": "GPL-3.0-or-later",
"prettier": "prettier-config-standard",
"exports": {
"./package.json": "./package.json",
"./Artifacts.json": {
"import": "./deployments/Artifacts.json",
"require": "./deployments/Artifacts.json"
}
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.22.5",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@openzeppelin/contracts": "^4.8.2",
"@rougenetwork/v2-core": "^2.1.5",
"dotenv": "^16.3.1",
"hardhat": "^2.13.0",
"hardhat-deploy": "^0.11.25",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"parse-duration": "^1.1.0",
"prettier": "^2.8.4",
"prettier-config-standard": "^5.0.0",
"prettier-plugin-solidity": "^1.1.3"
},
"lint-staged": {
"*.sol": "prettier --write",
"*.{js,json,css,md}": "prettier --write"
},
"dependencies": {
"esm": "^3.2.25"
}
}