generated from EthSign/hardhat-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.2 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
72
73
74
75
{
"name": "@ethsign/tokentable-evm-contracts",
"version": "2.5.7",
"description": "TokenTable is a token management platform for Web3 founders and token holders.",
"license": "AGPL v3",
"private": false,
"directories": {
"test": "test"
},
"publishConfig": {
"tag": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EthSign/tokentable-v2-evm"
},
"keywords": [
"solidity",
"ethereum",
"EthSign",
"TokenTable",
"vesting",
"unlocking",
"token"
],
"scripts": {
"build": "hardhat compile",
"clean": "hardhat clean",
"format": "npm run format-ts && npm run format-sol",
"format-sol": "prettier --write \"contracts/**/*.sol\"",
"format-ts": "prettier --ignore-unknown --write \"**/*.ts\"",
"lint": "npm run lint-ts && npm run lint-sol",
"lint-ts": "eslint . --ext .ts",
"lint-sol": "solhint ./contracts/**/*.sol",
"prepare": "husky install",
"test": "hardhat test",
"storage": "hardhat check",
"sizes": "hardhat size-contracts"
},
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "1.2.0",
"@matterlabs/hardhat-zksync-solc": "1.1.4",
"@matterlabs/hardhat-zksync-verify": "1.4.1",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"@openzeppelin/hardhat-upgrades": "3.0.3",
"@types/bunyan": "^1.8.7",
"@types/chai-as-promised": "7.1.7",
"@types/node": "20.8.7",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"bunyan": "^1.8.15",
"chai-as-promised": "7.1.1",
"dotenv": "^16.3.1",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"hardhat": "2.20.0",
"hardhat-contract-sizer": "2.10.0",
"hardhat-deploy": "^0.12.1",
"hardhat-storage-layout": "0.1.7",
"hardhat-gas-reporter": "^1.0.10",
"husky": "8.0.3",
"lint-staged": "15.0.2",
"prettier": "3.2.5",
"prettier-plugin-solidity": "1.3.1",
"solhint": "4.1.1",
"solidity-docgen": "0.6.0-beta.36",
"typescript": "5.2.2"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.0",
"@openzeppelin/contracts-upgradeable": "5.0.0",
"erc721a-upgradeable": "4.2.3"
}
}