generated from EthSign/hardhat-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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
{
"name": "@boyuanx/jx-solidity-template",
"version": "0.0.1",
"description": "Everything you need for creating Solidity smart contract with TypeScript testing",
"license": "Apache-2.0",
"private": false,
"directories": {
"test": "test"
},
"publishConfig": {
"tag": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boyuanx/jx-solidity-template"
},
"keywords": [
"solidity",
"ethereum",
"developer-tools"
],
"scripts": {
"build": "hardhat compile",
"clean": "hardhat clean",
"format": "npm run format-ts && npm run format-sol",
"format-sol": "prettier --ignore-unknown --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": {
"@nomicfoundation/hardhat-toolbox": "3.0.0",
"@openzeppelin/contracts": "5.0.0",
"@openzeppelin/contracts-upgradeable": "5.0.0",
"@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",
"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.19.0",
"hardhat-contract-sizer": "2.10.0",
"hardhat-deploy": "^0.11.43",
"hardhat-storage-layout": "0.1.7",
"husky": "8.0.3",
"lint-staged": "15.0.2",
"prettier": "3.0.3",
"prettier-plugin-solidity": "1.1.3",
"solhint": "4.0.0",
"typescript": "5.2.2"
},
"dependencies": {
"bunyan": "^1.8.15"
}
}