-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.93 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
{
"name": "@w3gswap/contracts",
"version": "0.1.3",
"author": "",
"license": "MIT",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"build": "yarn clean && yarn compile && yarn export-abi && yarn export-build",
"export-abi": "hardhat export-abi",
"export-build": "ts-node ./scripts/export-build.ts",
"coverage": "hardhat coverage",
"clean": "rimraf ./coverage ./coverage.json ./abi ./build && hardhat clean",
"prepublish": "yarn build",
"typechain": "hardhat typechain",
"test:local": "hardhat test --network localhost",
"test:mocha": "mocha --require ts-node/register --timeout 100000 'test/**/*.spec.ts'",
"run:ts": "ts-node",
"run:local": "hardhat run --network localhost",
"run:goerli": "hardhat run --network goerli",
"run:mainnet": "hardhat run --network mainnet",
"run:mumbai": "hardhat run --network mumbai",
"run:polygon": "hardhat run --network polygon",
"run:bsc": "hardhat run --network bsc",
"run:bsc_testnet": "hardhat run --network bsc_testnet",
"run:aurora": "hardhat run --network aurora",
"run:aurora_testnet": "hardhat run --network aurora_testnet",
"run:arb_one": "hardhat run --network arbitrum_one",
"run:arb_goerli": "hardhat run --network arbitrum_goerli",
"run:opt": "hardhat run --network optimism",
"run:opt_goerli": "hardhat run --network optimism_goerli",
"run:fantom": "hardhat run --network fantom",
"run:fantom_testnet": "hardhat run --network fantom_testnet",
"run:avalanche": "hardhat run --network avalanche",
"run:avalanche_fuji": "hardhat run --network avalanche_fuji",
"run:moonbase": "hardhat run --network moonbase",
"run:moonriver": "hardhat run --network moonriver",
"run:moonbeam": "hardhat run --network moonbeam",
"run:celo": "hardhat run --network celo",
"run:celo_al": "hardhat run --network celo_alfajores",
"run:telos_testnet": "hardhat run --network telos_testnet",
"run:telos": "hardhat run --network telos",
"run:evmos_testnet": "hardhat run --network evmos_testnet",
"run:evmos": "hardhat run --network evmos",
"run:boba_rinkeby": "hardhat run --network boba_rinkeby",
"run:boba": "hardhat run --network boba",
"lint": "yarn lint:sol && yarn lint:ts && yarn prettier:check",
"lint:fix": "yarn prettier",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:ts": "eslint \"**/*.{js,ts}\"",
"prettier:check": "prettier -c **/*.{js,ts,md,sol,json,yml}",
"prettier": "prettier -w **/*.{js,ts,md,sol,json,yml}",
"ci:test": "yarn compile && yarn test"
},
"homepage": "https://w3gswap.com/",
"repository": {
"type": "git",
"url": "https://github.com/web3gamesofficial/w3gswap-contracts"
},
"keywords": [
"w3gswap"
],
"files": [
"abi",
"build",
"contracts"
],
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^2.1.5",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"@typechain/ethers-v5": "^10.1.1",
"@typechain/hardhat": "^6.1.4",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"chai": "^4.3.7",
"dotenv": "^8.2.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"ethereum-waffle": "^3.4.4",
"ethereumjs-util": "^7.1.0",
"ethers": "^5.7.2",
"hardhat": "^2.12.2",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.9",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0"
}
}