-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
68 lines (68 loc) · 1.9 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
{
"name": "ideamarket",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:evm": "npx hardhat test test/contracts/evm/**/*",
"test:avm": "npx hardhat test --network avm test/contracts/avm/**/*",
"test": "npm run test:evm && npm run test:ovm",
"lint": "eslint --fix --ext .js,.ts,.tsx --ignore-path .gitignore .",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"format": "npm run prettier -- --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ideamarket/ideamarket.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ideamarket/ideamarket/issues"
},
"homepage": "https://github.com/Ideamarket/ideamarket#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-truffle4": "^2.0.2",
"@nomiclabs/hardhat-truffle5": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@nomiclabs/hardhat-web3-legacy": "^2.0.0",
"@openzeppelin/contracts": "^3.3.0",
"@openzeppelin/test-helpers": "^0.5.10",
"@uniswap/v3-periphery": "^1.2.1",
"chai": "^4.3.3",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.0.31",
"hardhat": "^2.2.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"solidity-coverage": "^0.7.16",
"uniswap-v3-deploy-plugin": "^0.1.0",
"web3": "^0.20.7"
},
"dependencies": {
"@openzeppelin/cli": "^2.8.2",
"arb-ts": "^0.0.29",
"bignumber.js": "^9.0.1",
"dotenv": "^8.2.0",
"moment": "^2.29.1",
"prompt": "^1.1.0"
},
"lint-staged": {
"*.+(js|ts|tsx)": [
"npm run lint"
],
"*.+(js|json|ts|tsx)": [
"npm run format"
]
}
}