forked from pickle-finance/protocol
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
56 lines (56 loc) · 1.34 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
{
"dependencies": {
"remixd": "^0.2.4",
"slot20": "^0.0.3",
"typescript-formatter": "^7.2.2",
"web3": "^1.6.1"
},
"engines": {
"node": ">=16.13.2"
},
"scripts": {
"flatten": "npx sol-merger \"./src/**/*.sol\" ./build",
"test": "hardhat test"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/chai-roughly": "^1.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.9",
"axios": "^0.24.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-roughly": "^1.0.0",
"dotenv": "^14.1.0",
"eslint": "^8.7.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.3",
"hardhat": "^2.8.2",
"hardhat-deploy": "^0.9.26",
"mocha": "^9.1.4",
"ts-node": "^10.4.0",
"tsc": "^2.0.4",
"typechain": "^6.1.0",
"typescript": "^4.5.4"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"env": {
"es6": true,
"node": true
},
"rules": {
"semi": "error"
}
}
}