-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "allium-nft",
"description": "Allium NFT Marketplace using ART$ Token",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"hardhatnode": "npx hardhat node",
"hardhatdeploy": "npx hardhat run scripts/deploy.js --network localhost"
},
"dependencies": {
"@headlessui/react": "^1.4.3",
"@heroicons/react": "^1.0.5",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.5.0",
"axios": "^0.21.1",
"chai": "^4.3.4",
"dotenv": "^16.0.1",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.3.1",
"hardhat": "^2.8.4",
"ipfs-http-client": "^50.1.2",
"next": "^13.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"web3": "^1.7.0",
"web3modal": "^1.9.3"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"eslint": "7.29.0",
"eslint-config-next": "^13.1.2",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7"
}
}