-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "@baguette-exchange/contracts",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.3.0",
"chai": "^4.2.0",
"ethereum-waffle": "^3.2.1",
"ethereumjs-tx": "^2.1.2",
"ethers": "^5.0.24",
"hardhat": "^2.1.1"
},
"version": "1.0.3",
"description": "Contracts for the Baguette Dex.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/baguette-exchange/contracts.git"
},
"author": "My Baker <[email protected]>",
"license": "MIT",
"scripts": {
"precompile": "rimraf ./build/",
"compile": "npx hardhat compile",
"pretest": "yarn compile",
"test": "npx hardhat test",
"lint": "prettier ./test/**/*.ts --check",
"prepublishOnly": "yarn test"
},
"bugs": {
"url": "https://github.com/baguette-exchange/contracts/issues"
},
"homepage": "https://baguette.exchange",
"dependencies": {
"abi-decoder": "^2.4.0",
"avalanche": "^3.2.2",
"base-58": "0.0.1",
"truffle": "^5.2.4",
"web3": "^1.3.4"
}
}