-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 2.16 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
57
58
59
60
61
62
63
{
"name": "tt-white-contracts",
"version": "0.0.1",
"description": "Whitelabelable smart contracts to be deployed on the Consilience Ventures chain.",
"main": "index.js",
"repository": "https://github.com/tableturn/tt-white-contracts",
"author": "Pierre Martin",
"license": "MIT",
"private": false,
"scripts": {
"local-node": "yarn hardhat node",
"console": "yarn hardhat console",
"test": "yarn hardhat test",
"coverage": "yarn hardhat coverage",
"postinstall": "yarn build:contracts && yarn build:abi",
"build": "yarn build:contracts && yarn build:abi && yarn build:types",
"build:contracts": "TS_NODE_TRANSPILE_ONLY=1 yarn hardhat compile",
"build:abi": "scripts/consolidate-artifacts.sh",
"build:types": "TS_NODE_TRANSPILE_ONLY=1 yarn hardhat typechain"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.2",
"@opengsn/contracts": "^3.0.0-beta.10",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/hardhat": "^9.1.0",
"ethers": "^5.7.2",
"hardhat": "^2.18.3",
"hardhat-deploy": "^0.11.43",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-diamond-abi": "^3.0.1",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.5",
"solidity-docgen": "^0.6.0-beta.36",
"typechain": "^8.3.2"
},
"devDependencies": {
"@defi-wonderland/smock": "^2.3.5",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"chai": "^4.3.10",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unused-imports": "^2.0.0",
"eth95": "^0.1.3",
"ethereum-waffle": "^4.0.10",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^4.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}