-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.48 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
64
65
66
67
68
69
70
71
{
"name": "zeppelin-finance",
"version": "1.0.0",
"description": "",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"deploy": "hardhat deploy",
"node": "hardhat node",
"lint:fix": "prettier --write 'scripts/**/*.{js,ts}' 'test/**/*.{js,ts}' 'tasks/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json && solhint contracts/**/*.sol",
"lint": "tslint --config tslint.json --project tsconfig.json && solhint contracts/**/*.sol",
"format": "prettier --check \"**/*.{ts,js,sol}\"",
"format:fix": "prettier --write \"**/*.{ts,js,sol}\""
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"author": "John Kosinski <[email protected]>",
"license": "UNLICENSED",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.6.0",
"@pinata/sdk": "^1.1.25",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.32",
"babel-eslint": "^10.1.0",
"chai": "^4.3.6",
"chai-bignumber": "^3.0.0",
"chai-bn": "^0.3.1",
"chai-ethers": "^0.0.1",
"dotenv": "^16.0.0",
"ethers": "^6.7.1",
"hardhat": "^2.17.2",
"hardhat-deploy": "^0.11.4",
"mocha-skip-if": "^0.0.3",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.0",
"transform": "^1.1.2",
"ts-generator": "^0.1.1",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typechain": "^8.0.0",
"typescript": "^4.6.4",
"web3": "^1.7.3"
},
"mocha": {
"timeout": 10000000
},
"dependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@openzeppelin/hardhat-upgrades": "^2.2.1",
"@tableland/evm": "^4.3.0",
"@tableland/sdk": "^4.5.3-dev.0"
}
}