-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.74 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
92
93
94
95
96
{
"name": "gemcase",
"description": "💎 A multichain NFT viewer",
"version": "0.1.0",
"author": "Pau Yankovski <https://github.com/pyncz>",
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate",
"start": "next start",
"lint": "next lint",
"lintfix": "next lint --fix"
},
"dependencies": {
"@hookform/resolvers": "^2.9.11",
"@iconify-icon/react": "^1.0.2",
"@iconify/icons-bx": "^1.2.6",
"@iconify/icons-ion": "^1.2.4",
"@next/font": "^13.0.7",
"@prisma/client": "^4.5.0",
"@pyncz/tailwind-mask-image": "^1.1.0",
"@pyncz/zod-key-mapper": "^1.0.1",
"@radix-ui/react-label": "^2.0.0",
"@radix-ui/react-popover": "^1.0.5",
"@radix-ui/react-radio-group": "^1.1.1",
"@radix-ui/react-select": "^1.2.0",
"@radix-ui/react-tooltip": "^1.0.3",
"@reduxjs/toolkit": "^1.9.1",
"@tanstack/react-query": "^4.16.0",
"@trpc/client": "^10.18.0",
"@trpc/next": "^10.18.0",
"@trpc/react-query": "^10.18.0",
"@trpc/server": "^10.18.0",
"@types/sharp": "^0.31.1",
"@voire/type-utils": "^1.2.0",
"@wiiib/check-evm-address": "^1.1.0",
"@wiiib/explorer-adapter": "^1.0.3",
"classnames": "^2.3.2",
"ethers": "^6.0.3",
"i18next": "^22.4.5",
"moralis": "^2.17.0",
"next": "^13.0.7",
"next-i18next": "^13.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.43.1",
"react-i18next": "^12.1.1",
"react-markdown": "^8.0.5",
"react-redux": "^8.0.5",
"react-use": "^17.4.0",
"sass": "^1.57.0",
"satori": "^0.4.0",
"sharp": "^0.31.3",
"smart-truncate": "^1.0.1",
"superjson": "1.9.1",
"ufo": "^1.1.1",
"zod": "^3.21.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.26.2",
"@antfu/ni": "^0.10.2",
"@tailwindcss/aspect-ratio": "^0.3.0",
"@tailwindcss/line-clamp": "^0.2.1",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/smart-truncate": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.26.0",
"eslint-config-next": "13.0.7",
"lint-staged": ">=10",
"postcss": "^8.4.14",
"prisma": "^4.5.0",
"simple-git": "^3.17.0",
"simple-git-hooks": "^2.8.1",
"stylelint": "^14.8.2",
"stylelint-config-standard": "^28.0.0",
"tailwindcss": "^3.2.0",
"typescript": "^4.8.4"
},
"simple-git-hooks": {
"pre-commit": "nr lint-staged"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,cts,mts,jsx,tsx}": [
"eslint --fix"
],
"*.{css,scss,sass,html}": [
"stylelint --fix"
]
}
}