-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
132 lines (132 loc) · 4.44 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@ape.swap/contracts",
"description": "A collection of smart contract tools and interfaces used by ApeSwap.",
"version": "2.0.1",
"engines": {
"yarn": "^1.22.0"
},
"files": [
"/contracts/**/*.sol",
"/build/contracts/*.json",
"!/contracts/mocks/**/*"
],
"bin": {
"apeswapfinance-contracts-migrate-imports": "scripts/migrate-imports.js"
},
"scripts": {
"compile": "hardhat compile",
"compile:force": "hardhat compile --force",
"coverage": "export COVERAGE=true; hardhat coverage",
"docs": "oz-docs",
"docs:watch": "yarn docs watch contracts 'docs/*.hbs' docs/helpers.js",
"prepare-docs": "scripts/prepare-docs.sh",
"lint:js": "eslint --ignore-path .gitignore .",
"lint:js:fix": "eslint --ignore-path .gitignore . --fix",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier -c 'contracts/**/*.sol'",
"lint:sol:fix": "prettier --write \"contracts/**/*.sol\"",
"prepublish": "rimraf build contracts/build artifacts cache",
"prepare": "export COMPILE_MODE=production; yarn compile",
"prepack": "scripts/prepack.sh",
"release": "scripts/release/release.sh",
"version": "scripts/release/version.sh",
"pretest": "yarn compile",
"test": "mocha --exit --recursive --timeout 30000",
"test:ci": "yarn test",
"test:inheritance": "node scripts/inheritanceOrdering artifacts/build-info/*",
"gas-report": "export ENABLE_GAS_REPORT=true; yarn test",
"lint": "solhint './contracts/**/*.sol'",
"lint:fix": "solhint './contracts/**/*.sol' --fix",
"gen:docs": "yarn docs && sol2uml ./contracts -o docs/uml.svg",
"prettier:fix": "prettier --write 'contracts/**/*.sol'"
},
"repository": {
"type": "git",
"url": "https://github.com/ApeSwapFinance/apeswap-contracts.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"zeppelin"
],
"author": "ApeSwap Community <hello@apeswap.finance>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/ApeSwapFinance/apeswap-contracts/issues"
},
"homepage": "https://github.com/ApeSwapFinance/apeswap-contracts/",
"resolutions": {
"ansi-regex": "^5.0.1",
"glob-parent": "^5.1.2",
"highlight.js": "^10.4.1",
"underscore": "^1.12.1",
"yargs-parser": "^5.0.1",
"got": "^11.8.5",
"semver": "^7.5.2",
"minimatch": "^3.0.5",
"flat": "^5.0.1"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/docs-utils": "^0.1.0",
"@openzeppelin/test-helpers": "^0.5.16",
"@truffle/abi-utils": "^0.2.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/mocha": "^10.0.0",
"chai": "^4.3.6",
"dotenv": "^10.0.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eth-sig-util": "^3.0.0",
"ethereumjs-util": "^7.0.7",
"ethereumjs-wallet": "^1.0.1",
"ethers": "^5.7.2",
"graphlib": "^2.1.8",
"hardhat": "^2.0.6",
"hardhat-abi-exporter": "^2.10.0",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.4",
"husky": "6.0.0",
"keccak256": "^1.0.2",
"lodash.startcase": "^4.4.0",
"lodash.zip": "^4.2.0",
"merkletreejs": "^0.2.13",
"micromatch": "^4.0.2",
"prettier": "^2.3.0",
"prettier-plugin-solidity": "^1.0.0-beta.16",
"rimraf": "^3.0.2",
"sol2uml": "^1.1.29",
"solc": "^0.8.3",
"solhint": "^3.3.6",
"solidity-ast": "^0.4.25",
"solidity-coverage": "^0.8.2",
"solidity-docgen": "^0.5.16",
"typechain": "^8.1.0",
"typescript": "^4.8.4",
"web3": "^1.3.0",
"yargs": "^16.2.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@openzeppelin/contracts-upgradeable-v0.7": "npm:@openzeppelin/contracts-upgradeable@^3.4.0",
"@openzeppelin/contracts-v0.7": "npm:@openzeppelin/contracts@^3.4.2",
"got": "^11.8.5",
"underscore": "^1.12.1"
}
}