generated from windingtree/smartcontracts-template-hardhat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 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
93
94
95
96
97
98
99
{
"name": "@windingtree/win-pay",
"description": "Win.so crypto payments contract",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Winding Tree Developers",
"email": "[email protected]"
},
"license": "GPL-3.0-only",
"version": "0.0.0-semantic-release",
"homepage": "https://windingtree.com/",
"keywords": [
"windingtree",
"ethereum",
"win.so",
"win",
"pay",
"crypto"
],
"repository": {
"type": "git",
"url": "https://github.com/windingtree/win-pay"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"contracts/interfaces",
"contracts/libraries",
"artifacts/contracts/**/*.json",
"!artifacts/contracts/**/*.dbg.json",
"typechain",
"dist"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.1",
"@openzeppelin/contracts-upgradeable": "^4.7.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"conventional-changelog-cli": "^2.2.2",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "^3.1.1",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-ethers": "^0.0.1",
"dotenv": "^16.0.2",
"eslint": "^8.23.1",
"ethers": "^5.7.1",
"git-cz": "^4.9.0",
"hardhat": "^2.11.2",
"hardhat-deploy": "^0.11.18",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.9",
"mocha": "^10.0.0",
"mocha-chai-jest-snapshot": "^1.1.4",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"husky": "^8.0.1",
"solc": "^0.8.17",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.4"
},
"scripts": {
"compile": "hardhat compile",
"docgen": "hardhat docgen",
"test": "hardhat test",
"commit": "git-cz -S",
"clean": "rm -rf dist cache artifacts typechain",
"build": "yarn clean && yarn compile && yarn tsc -p tsconfig-build.json",
"prepare": "husky install",
"changelog": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s",
"lint:ts": "npx eslint . --ext .ts",
"lint:sol": "npx solhint contracts/**/*.sol",
"coverage": "npx hardhat coverage",
"deploy:sokol": "yarn hardhat deploy --gasprice 50000000000 --network sokol && yarn hardhat sourcify --network sokol",
"scripts": "yarn hardhat --config ./hardhat.scripts.config.ts"
}
}