-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 3.2 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
97
98
99
100
101
102
103
104
105
{
"name": "quest-gateway",
"version": "0.0.2",
"private": true,
"scripts": {
"dev": "next --port=3000",
"develop": "vercel dev",
"serve": "npx next start --port=$PORT",
"build": "next build",
"export": "npx next build && npx next export",
"format": "npx prettier --write .",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"start": "next start",
"test": "vitest run"
},
"husky": {
"hooks": {
"applypatch-msg": "echo \"[Husky] applypatch-msg\"",
"pre-applypatch": "echo \"[Husky] pre-applypatch\"",
"post-applypatch": "echo \"[Husky] post-applypatch\"",
"pre-commit": "echo \"[Husky] pre-commit\" && yarn run format && yarn run lint"
}
},
"dependencies": {
"@floating-ui/react": "0.24.0",
"@hookform/resolvers": "2.9.10",
"@radix-ui/react-progress": "1.0.3",
"@radix-ui/react-select": "1.2.1",
"@swc-jotai/react-refresh": "0.1.0",
"@tailwindcss/container-queries": "0.1.0",
"@tailwindcss/line-clamp": "0.4.2",
"@tailwindcss/typography": "0.5.8",
"@tanstack/react-query": "4.29.7",
"@vercel/og": "0.5.8",
"axios": "1.5.0",
"blockies-ts": "1.0.0",
"class-variance-authority": "^0.7.0",
"classnames": "2.3.2",
"clsx": "^2.0.0",
"connectkit": "1.5.3",
"copy-to-clipboard": "3.3.1",
"date-fns": "2.29.3",
"eslint-config-airbnb-typescript-prettier": "5.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-standard": "5.0.0",
"ethers": "5.7.2",
"framer-motion": "8.5.0",
"jotai": "2.4.1",
"js-cookie": "3.0.5",
"lodash": "4.17.21",
"next": "13.5.1",
"next-seo": "6.1.0",
"prettier": "2.6.2",
"react": "18.2.0",
"react-countdown": "2.3.5",
"react-dom": "18.2.0",
"react-error-boundary": "3.1.4",
"react-hook-form": "7.40.0",
"react-icons": "4.7.1",
"react-intl": "6.4.4",
"react-loading-skeleton": "3.1.0",
"react-spinners": "0.13.7",
"react-toastify": "9.1.1",
"react-virtualized-auto-sizer": "^1.0.20",
"react-window": "^1.8.9",
"sharp": "0.31.3",
"siwe": "1.1.6",
"tailwind-merge": "1.9.1",
"ts-pattern": "5.0.1",
"use-debounce": "9.0.3",
"viem": "1.10.13",
"wagmi": "1.4.2",
"web-vitals": "1.0.1",
"zod": "3.21.4",
"zod-validation-error": "1.2.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.5.5",
"@tanstack/react-query-devtools": "4.29.7",
"@testing-library/react": "13.4.0",
"@total-typescript/ts-reset": "0.3.7",
"@types/js-cookie": "3.0.3",
"@types/lodash": "4.14.197",
"@types/node": "18.7.0",
"@types/react": "18.0.33",
"@types/react-dom": "18.0.11",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.6",
"autoprefixer": "10.4.13",
"css-loader": "^6.7.3",
"eslint": "8.38.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"jsdom": "22.1.0",
"postcss": "8.4.21",
"postcss-loader": "7.0.1",
"style-loader": "^3.3.2",
"tailwindcss": "3.2.4",
"ts-node": "10.2.1",
"typescript": "5.0.4",
"vitest": "0.34.4"
}
}