-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
97 lines (97 loc) · 2.78 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
{
"name": "somm-boilerplate",
"scripts": {
"analyze": "cross-env ANALYZE=true next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"build": "next build",
"deadcode": "ts-prune",
"dev": "next dev",
"lint": "next lint",
"lint:fix": "next lint --fix",
"start": "next start",
"test": "jest --config jest.json",
"chakra:gen": "chakra-cli tokens ./src/theme/index.ts",
"postinstall": "yarn chakra:gen"
},
"dependencies": {
"@analytics/mixpanel": "^0.4.0",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/styled-system": "^2.9.1",
"@cosmjs/launchpad": "0.27.0",
"@cosmjs/proto-signing": "0.27.0",
"@cosmjs/stargate": "^0.30.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@keplr-wallet/cosmos": "^0.12.74",
"@keplr-wallet/types": "^0.11.3",
"@next/bundle-analyzer": "^12.1.0",
"@nivo/bar": "^0.80.0",
"@nivo/core": "^0.80.0",
"@nivo/line": "^0.80.0",
"@portabletext/react": "^3.1.0",
"@sentry/nextjs": "6.18.2",
"@supabase/supabase-js": "^2.8.0",
"@tanstack/react-query": "^5.35.1",
"@tanstack/react-query-devtools": "^5.37.1",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/smart-order-router": "^2.5.30",
"@vercel/kv": "^1.0.1",
"analytics": "^0.8.1",
"axios": "^1.2.2",
"bech32": "^2.0.0",
"date-fns": "^2.29.3",
"date-fns-tz": "^1.3.7",
"framer-motion": "^11.2.10",
"graz": "^0.0.38",
"htmr": "^1.0.2",
"lodash": "^4.17.21",
"next": "^14.2.4",
"next-plausible": "3.1.5",
"next-sanity": "^1.0.0",
"next-seo": "^5.15.0",
"react": "^18.3.1",
"react-countdown": "^2.3.4",
"react-dom": "^18.3.1",
"react-hook-form": "7.27.1",
"react-icons": "^4",
"react-intersection-observer": "^9.4.3",
"react-jazzicon": "^1.0.4",
"react-slick": "^0.29.0",
"react-table": "^7.8.0",
"sanity-codegen": "^0.9.8",
"slick-carousel": "^1.8.1",
"urql": "^2.2.0",
"viem": "^2.11.1",
"wagmi": "^2.10.6",
"zustand": "^4.3.8"
},
"devDependencies": {
"@chakra-ui/cli": "2.2.1",
"@types/node": "17.0.21",
"@types/react": "^18.3.2",
"@types/react-slick": "^0.23.10",
"@types/react-table": "^7.7.14",
"@typescript-eslint/eslint-plugin": "5.14.0",
"eslint": "8.10.0",
"eslint-config-next": "^12.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.0.1",
"prettier": "^2",
"ts-prune": "^0",
"typescript": "^5.4.5"
},
"private": true,
"volta": {
"node": "22.4.0",
"yarn": "1.22.17"
},
"prettier": {
"semi": false,
"printWidth": 70,
"tabWidth": 2,
"useTabs": false,
"bracketSpacing": true
}
}