forked from jellydn/nft-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.79 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "nft-app",
"version": "0.1.0",
"scripts": {
"build": "npx hardhat compile --network localhost && tsc && vite build",
"dev": "vite",
"lint:sol": "npx solhint 'contracts/**/*.sol'",
"prepare": "husky install",
"serve": "vite preview",
"test": "mocha --exit --recursive"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write",
"package.json": "sort-package-json"
},
"dependencies": {
"@hookform/devtools": "4.2.2",
"@sentry/react": "7.13.0",
"@sentry/tracing": "7.13.0",
"@tailwindcss/typography": "0.5.7",
"@web3-react/core": "6.1.9",
"@web3-react/injected-connector": "6.0.7",
"@web3-react/network-connector": "6.2.9",
"@web3-react/walletconnect-connector": "6.2.13",
"daisyui": "2.29.0",
"loglevel": "1.8.0",
"nft.storage": "7.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "14.2.2",
"react-hook-form": "7.36.0",
"react-hot-toast": "2.4.0",
"use-nft": "0.11.0",
"web3-react": "5.0.5",
"web3.storage": "4.4.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.1.1",
"@nomiclabs/hardhat-etherscan": "3.1.0",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"@openzeppelin/hardhat-upgrades": "1.20.0",
"@trivago/prettier-plugin-sort-imports": "3.3.0",
"@typechain/ethers-v5": "10.1.0",
"@typechain/hardhat": "6.1.3",
"@types/chai": "4.3.3",
"@types/mocha": "9.1.1",
"@types/node": "18.7.15",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"@vitejs/plugin-react-refresh": "1.3.6",
"autoprefixer": "10.4.12",
"chai": "4.3.6",
"dotenv": "16.0.2",
"eslint": "8.23.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"ethereum-waffle": "3.4.4",
"ethers": "5.7.1",
"hardhat": "2.11.2",
"hardhat-gas-reporter": "1.0.9",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"p-queue": "6.6.2",
"postcss": "8.4.16",
"prettier": "2.7.1",
"prettier-plugin-solidity": "1.0.0-beta.24",
"solgraph": "0.3.3",
"solhint": "3.3.7",
"solidity-coverage": "0.8.2",
"sort-package-json": "1.57.0",
"tailwindcss": "3.1.8",
"ts-node": "10.9.1",
"typechain": "8.1.0",
"typescript": "4.8.3",
"vite": "3.1.3"
},
"engines": {
"node": ">=12.0.0 <13.0.0-0||>=14.0.0 <15.0.0-0||>=16.0.0 <17.0.0-0"
}
}