-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.97 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ethereum-solidity-ts",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/janek26/ethereum-solidity-ts#readme",
"bugs": {
"url": "https://github.com/janek26/ethereum-solidity-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/janek26/ethereum-solidity-ts.git"
},
"license": "MIT",
"author": "janek26",
"main": "index.js",
"scripts": {
"build": "yarn compile",
"chain": "hardhat node",
"compile": "hardhat compile",
"coverage": "yarn build && hardhat coverage --temp artifacts --network coverage",
"deploy:factory:init": "hardhat run scripts/deploy-factory.ts",
"deploy:init": "hardhat run scripts/deploy-immutable.ts",
"dev": "hardhat watch compile",
"preexample": "yarn --cwd example install && cp -r typechain example/typechain",
"example": "yarn --cwd example dev",
"format": "prettier --ignore-path .gitignore --write './**/*.{ts,sol,json,md,yml}'",
"hh": "hardhat",
"postinstall": "patch-package && yarn build",
"lint": "yarn lint:solhint && yarn lint:prettier",
"lint:prettier": "prettier --ignore-path .gitignore --check './**/*.{ts,sol,json,md,yml}'",
"lint:solhint": "hardhat check",
"precommit": "yarn lint && yarn test",
"test": "hardhat test",
"test:watch": "hardhat watch test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.{ts,sol,json,md,yml}": "prettier --write",
"*.sol": "solhint"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.4.1",
"@openzeppelin/contracts-upgradeable": "^3.3.0",
"@openzeppelin/hardhat-upgrades": "^1.5.0",
"@typechain/ethers-v5": "^5.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.14",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.0.24",
"hardhat": "^2.0.5",
"hardhat-abi-exporter": "^2.0.8",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-log-remover": "^2.0.1",
"hardhat-tracer": "^1.0.0-alpha.3",
"hardhat-typechain": "^0.3.4",
"hardhat-watcher": "^2.0.0",
"husky": "^4.3.8",
"import-sort-style-module": "^6.0.0",
"lint-staged": "^10.5.3",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.2.1",
"prettier-plugin-import-sort": "^0.0.6",
"prettier-plugin-packagejson": "^2.2.9",
"prettier-plugin-solidity": "^1.0.0-beta.3",
"solc": "^0.7.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.1",
"typescript": "^4.1.3"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}