-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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
{
"name": "etherscanlite",
"version": "1.0.0",
"description": "EtherscanLite - Simple Block Explorer",
"author": "saimeunt",
"license": "ISC",
"scripts": {
"lint": "next lint",
"prettier": "prettier --write \"{app,components}/**/*.{ts,tsx}\"",
"tsc": "tsc --noEmit",
"dev": "next dev",
"build": "next build"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.17",
"@web3modal/ethereum": "^2.3.0",
"@web3modal/react": "^2.3.0",
"alchemy-sdk": "^2.7.0",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"ethers": "^5.7.2",
"jsdom": "^21.1.1",
"lodash": "^4.17.21",
"next": "^13.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"usehooks-ts": "^2.9.1",
"wagmi": "^0.12.10"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@types/jsdom": "^21.1.1",
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.11",
"@types/react": "^18.0.35",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.8.0",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.4"
}
}