-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.74 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
{
"name": "xex-crypto",
"version": "0.0.1",
"description": "XEX Crypto",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile -all",
"test": "truffle test test/main.js",
"lint": "npm run lint:sol",
"lint:fix": "npm run lint:sol:fix",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier -c 'contracts/**/*.sol'",
"lint:sol:fix": "prettier --write \"contracts/**/*.sol\"",
"live": "nodemon --exec yarn test -e sol,js"
},
"keywords": [
"XEX",
"XEX Crypto",
"Ethereum",
"ERC-20"
],
"author": "J.Levin, L.Belyaev",
"license": "MIT",
"dependencies": {
"@ethersproject/abi": "^5.4.7",
"@ethersproject/providers": "^5.4.7",
"@ethersproject/units": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@openzeppelin/contracts": "^4.7.3",
"@truffle/hdwallet-provider": "^2.0.13",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"abdk-libraries-solidity": "^3.0.0",
"chai": "^4.2.0",
"dotenv": "^16.0.1",
"ethers": "^5.4.7",
"ganache-time-traveler": "^1.0.16",
"hardhat": "^2.12.4",
"hardhat-gas-reporter": "^1.0.8",
"openzeppelin-test-helpers": "^0.5.1",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.0",
"truffle-assertions": "^0.9.2",
"truffle-plugin-verify": "^0.6.1",
"typechain": "^8.1.0"
},
"files": [
"/build/contracts/*.json",
"/contracts/**/*.sol"
]
}