generated from dev-protocol/template-repos-ts-sol
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "template-repos-ts-sol",
"version": "1.0.0",
"description": "Template repository for using TypeScript and Solidity",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"pretest": "yarn generate",
"generate": "hardhat compile",
"pregenerate": "yarn clean",
"lint": "yarn lint:eslint && yarn lint:solhint && yarn lint:format",
"lint:eslint": "eslint . --ext .ts --fix",
"lint:solhint": "solhint --fix --max-warnings 0 \"contracts/**/*.sol\"",
"lint:format": "prettier --write '**/*.{sol,ts,json,md,yml}'",
"build": "tsc -p tsconfig.build.json",
"prebuild": "yarn generate",
"clean": "del 'artifacts'",
"prepare": "husky install"
},
"author": "",
"license": "MPL-2.0",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.1.1",
"@nomiclabs/hardhat-waffle": "2.0.6",
"@types/chai": "4.3.20",
"@types/dotenv": "8.2.3",
"@types/mocha": "10.0.10",
"@types/node": "22.10.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"chai": "4.5.0",
"del-cli": "4.0.1",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-config-xo": "0.43.1",
"eslint-config-xo-typescript": "0.57.0",
"ethereum-waffle": "3.4.4",
"ethers": "5.7.2",
"hardhat": "2.9.9",
"husky": "7.0.4",
"mocha": "9.2.2",
"prettier": "2.8.8",
"prettier-plugin-solidity": "1.1.3",
"ts-node": "10.9.2",
"typescript": "5.0.4"
},
"dependencies": {
"@openzeppelin/contracts": "4.3.2",
"@openzeppelin/contracts-upgradeable": "4.3.2",
"@typechain/ethers-v5": "^11.0.0",
"@typechain/hardhat": "^7.0.0",
"solhint": "^3.3.2",
"typechain": "^8.0.0"
}
}