forked from zeta-chain/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 4.89 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 4.89 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "@zetachain/docs",
"version": "0.0.0",
"license": "MIT",
"author": "zetachain",
"scripts": {
"build": "NODE_OPTIONS=--max-old-space-size=6144 yarn clean && yarn graphql-codegen && next build",
"postbuild": "next-sitemap",
"dev": "yarn graphql-codegen && concurrently \"next dev -p 3001\" \"yarn graphql-codegen:watch\"",
"lint:fix": "npx eslint --ext .js,.jsx,.ts,.tsx --fix ./src",
"lint": "npx eslint --ext .js,.jsx,.ts,.tsx ./src",
"start": "next start",
"check-links": "EXPORT=true yarn build && npx linkinator ./out --recurse --verbosity error --skip '^https' --skip '/developers/architecture/protocol' --skip '/developers/frontend/toolkit' --skip '/api/chat/'",
"clean": "rimraf .next out",
"tsc:watch": "tsc --watch",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"analyze": "ANALYZE=true next build",
"graphql-codegen:watch": "graphql-codegen --config ./codegen.ts --watch",
"graphql-codegen": "graphql-codegen --config ./codegen.ts",
"remove-codegen": "rimraf 'src/generated/*.types.*'"
},
"dependencies": {
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.3",
"@emotion/serialize": "1.1.3",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.16.0",
"@mui/material": "5.16.0",
"@next/bundle-analyzer": "13.5.6",
"@reduxjs/toolkit": "1.9.7",
"@shikijs/core": "1.3.0",
"@shikijs/transformers": "1.3.0",
"@supabase/supabase-js": "2.44.3",
"@svgr/webpack": "6.5.1",
"@t3-oss/env-nextjs": "0.7.1",
"@tailwindcss/line-clamp": "0.4.4",
"@types/react-syntax-highlighter": "15.5.13",
"@upstash/ratelimit": "2.0.1",
"@vercel/kv": "2.0.0",
"@zetachain/addresses": "0.0.13",
"@zetachain/toolkit": "^16.1.0",
"@zetachain/ui-toolkit": "1.0.3",
"axios": "1.7.4",
"bech32": "2.0.0",
"chroma-js": "2.1.0",
"clsx": "1.2.1",
"concurrently": "8.2.2",
"contentful": "11.7.3",
"cors": "2.8.5",
"date-fns": "^3.6.0",
"dotenv": "16.3.1",
"ethers": "5.7.2",
"framer-motion": "6.5.1",
"graphql-request": "7.2.0",
"ioredis": "5.6.1",
"js-yaml": "4.1.0",
"lodash-es": "4.17.21",
"moment": "^2.30.1",
"next": "14.2.5",
"next-redux-wrapper": "8.1.0",
"next-seo": "6.0.0",
"next-sitemap": "^4.2.3",
"nextra": "2.13.4",
"nextra-theme-docs": "2.13.4",
"posthog-js": "^1.261.8",
"posthog-node": "^5.8.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "9.0.1",
"react-qr-code": "^2.0.15",
"react-redux": "8.1.3",
"react-swipeable": "7.0.2",
"react-toastify": "^10.0.5",
"react-use": "17.4.3",
"sharp": "0.32.6",
"shiki": "1.3.0",
"swagger-ui-react": "5.17.2",
"swr": "2.2.5",
"tailwindcss": "3.2.6",
"twin.macro": "3.1.0",
"typescript": "5.0.4",
"zod": "3.22.4"
},
"devDependencies": {
"@babel/core": "7.23.7",
"@babel/plugin-proposal-throw-expressions": "7.23.3",
"@babel/plugin-transform-react-jsx": "7.23.4",
"@babel/preset-env": "7.23.8",
"@babel/preset-typescript": "7.23.3",
"@emotion/babel-plugin": "11.11.0",
"@emotion/babel-plugin-jsx-pragmatic": "0.2.1",
"@graphql-codegen/add": "5.0.0",
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-graphql-request": "6.3.0",
"@graphql-codegen/typescript-operations": "4.0.1",
"@next/eslint-plugin-next": "12.3.4",
"@types/chroma-js": "2.1.0",
"@types/cors": "2.8.17",
"@types/date-fns": "^2.6.0",
"@types/eslint": "8.56.2",
"@types/graphql": "14.5.0",
"@types/lodash-es": "4.17.12",
"@types/node": "17.0.45",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@types/swagger-ui-react": "4.18.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"autoprefixer": "10.4.16",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.29.3",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unused-imports": "3.0.0",
"linkinator": "^6.0.5",
"postcss": "8.4.33",
"prettier": "2.6.2",
"rimraf": "^5.0.7"
},
"resolutions": {
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18"
},
"babelMacros": {
"twin": {
"config": "./tailwind.config.js",
"preset": "emotion",
"disableShortCss": false
}
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}