-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "nft-marketplace-sc",
"version": "1.0.0",
"description": "Smart Contracts for NFT Marketplace",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"test:coverage": "npx hardhat coverage",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polytrade-finance/nft-marketplace-sc.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/polytrade-finance/nft-marketplace-sc/issues"
},
"homepage": "https://github.com/polytrade-finance/nft-marketplace-sc#readme",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.1",
"hardhat": "^2.11.2",
"husky": "^7.0.4",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3",
"dotenv": "^16.0.3",
"hardhat-gas-reporter": "^1.0.9",
"moment": "^2.29.4",
"solhint": "^3.3.7"
}
}