-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "smart-contracts",
"version": "0.0.1",
"description": "The Tryvium Smart Contracts repository, based on Waffle and Typescript",
"main": "index.js",
"repository": "[email protected]:tryvium-travels/smart-contracts.git",
"author": "Tryvium Travels LTD",
"license": "MIT",
"scripts": {
"build": "hardhat compile",
"flatten": "waffle flatten",
"test": "hardhat test",
"mythril-security-checks": "sh ./scripts/run-mythril-checks.sh"
},
"devDependencies": {
"@atixlabs/hardhat-time-n-mine": "^0.0.5",
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.4.1",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.5",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"hardhat": "^2.8.0",
"hardhat-gas-reporter": "^1.0.6",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typechain": "^6.1.0",
"typescript": "^4.5.4"
}
}