-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "saisi_nft-marketplace",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"deploy:local": "npx hardhat run scripts/deploy.js --network localhost",
"deploy:polygon": "npx hardhat run scripts/deploy.js --network polygon_mumbai",
"compile": "npx hardhat compile"
},
"dependencies": {
"@metamask/providers": "^9.1.0",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.0",
"@openzeppelin/contracts": "4.5.0",
"axios": "0.26.0",
"ethers": "^5.6.9",
"hardhat": "^2.10.1",
"ipfs-http-client": "56.0.1",
"next": "12.2.4",
"next-themes": "0.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "12.0.4",
"web3modal": "1.9.5"
},
"devDependencies": {
"@types/node": "18.6.4",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"autoprefixer": "10.4.2",
"chai": "^4.3.6",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.2.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "8.4.7",
"tailwindcss": "3.0.23",
"typescript": "4.7.4"
}
}