-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.71 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
{
"name": "@windingtree/contracts",
"version": "0.0.0-semantic-release",
"description": "The WindingTree market protocol smart contracts and utilities",
"repository": "[email protected]:windingtree/contracts.git",
"bugs": "https://github.com/windingtree/contracts/issues",
"homepage": "https://github.com/windingtree/contracts#readme",
"author": "Kostiantyn Smyrnov <[email protected]>",
"keywords": [
"windingtree",
"market",
"protocol",
"solidity",
"typescript",
"contract",
"smart contract"
],
"contributors": [
"Kostiantyn Smyrnov <[email protected]>"
],
"license": "MIT",
"private": true,
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@openzeppelin/hardhat-upgrades": "^1.25.0",
"@semantic-release/changelog": "^6.0.3",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/ethers-v6": "^0.3.2",
"@typechain/hardhat": "^6.1.6",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.40.0",
"ethers": "^5.7.2",
"git-cz": "^4.9.0",
"hardhat": "^2.14.0",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-deploy": "^0.11.28",
"hardhat-deploy-ethers": "^0.4.0-next.1",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"prettier-plugin-jsdoc": "^0.4.2",
"prettier-plugin-solidity": "^1.1.3",
"semantic-release": "^21.0.2",
"semantic-release-cli": "^5.4.4",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^5.0.4",
"viem": "^0.3.37"
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^4.8.3"
},
"scripts": {
"build": "hardhat compile",
"package:update": "rm -rf ./package/typechain ./package/artifacts && pnpm build && cp -r ./artifacts ./package/artifacts && cp ./README.md ./package/README.md && pnpm --dir ./package install && pnpm --dir ./package build",
"test": "hardhat test",
"lint": "solhint . && eslint --ignore-path ./.lintignore --ext .ts",
"lint:fix": "eslint --ignore-path ./.lintignore --ext .ts --fix && solhint --fix . && prettier --ignore-path ./.lintignore --check !network --write .",
"coverage": "npx hardhat coverage",
"prepare": "husky install",
"commit": "git-cz -S"
}
}