-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.45 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
{
"name": "jioswap-dex-contract",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run compile && npx hardhat typechain",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npm run build && npx hardhat coverage --temp artifacts --network coverage",
"rebuild": "npm run clean && npm run build && npm run test",
"lint": "eslint ./ --fix",
"lint-quick": "pretty-quick --staged --pattern \"**/*.*(ts|tsx)\""
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-quick",
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dezzyboy/jioswap-dex-contract.git"
},
"author": "dezzyboy",
"license": "MIT",
"bugs": {
"url": "https://github.com/dezzyboy/jioswap-dex-contract/issues"
},
"homepage": "https://github.com/dezzyboy/jioswap-dex-contract#readme",
"devDependencies": {
"@lbertenasco/contract-utils": "0.2.27",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^3.4.1",
"@openzeppelin/upgrades": "^2.8.0",
"@typechain/ethers-v4": "^1.0.0",
"@typechain/ethers-v5": "^4.0.0",
"@typechain/truffle-v4": "^2.0.2",
"@typechain/truffle-v5": "^2.0.2",
"@typechain/web3-v1": "^1.0.0",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "7.1.3",
"@types/lodash": "4.14.168",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chai": "^4.2.0",
"chai-as-promised": "7.1.1",
"dotenv": "^8.2.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"ethereum-waffle": "^3.1.2",
"ethers": "^5.0.24",
"hardhat": "^2.0.2",
"hardhat-deploy": "^0.7.0-beta.23",
"hardhat-deploy-ethers": "^0.3.0-beta.5",
"hardhat-typechain": "^0.3.4",
"husky": "^4.3.0",
"lodash": "4.17.21",
"prettier": "^2.2.1",
"pretty-quick": "^2.0.1",
"solc": "^0.7.4",
"solidity-coverage": "^0.7.11",
"ts-generator": "^0.1.1",
"ts-morph": "^8.1.2",
"ts-node": "^9.1.1",
"typechain": "^3.0.0",
"typescript": "^4.1.3",
"yesno": "^0.3.1"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}