-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "nft_marketplace",
"version": "1.0.0",
"description": "nft_marketplace Smart Contract is a simple small contract to create the back bone for a simple Dapp market place using the hardhat framework with Web3.Js and Ethers.Js",
"main": "index.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next dev -p 3002",
"build": "next build",
"start": "next start -p 3002",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnasElii/NFT-Marketplace.git"
},
"keywords": [
"smart",
"contract",
"ethereum",
"solidity",
"market",
"place",
"NFT",
"NFT's"
],
"author": "Anas El",
"license": "MIT",
"bugs": {
"url": "https://github.com/AnasElii/NFT-Marketplace/issues"
},
"homepage": "https://github.com/AnasElii/NFT-Marketplace#readme",
"dependencies": {
"@openzeppelin/contracts": "^5.0.2",
"axios": "^1.6.8",
"bignumber.js": "^9.1.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ethers": "^6.13.1",
"form-data": "^4.0.0",
"next": "^14.2.3",
"react": "^18",
"react-dom": "^18",
"react-toastify": "^10.0.5"
},
"devDependencies": {
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"tailwindcss": "^3.4.1"
}
}