forked from guildxyz/guild.xyz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.31 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
106
107
108
{
"name": "guildxyz",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "npm run snyk-protect && husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit --incremental false",
"format": "prettier --write .",
"lint": "next lint",
"lint-fix": "eslint --fix . --ext .ts,.tsx,.js,.jsx",
"cypress:open": "cypress open",
"cypress:open:mobile": "cypress open --config viewportWidth=375,viewportHeight=667",
"test": "cypress run",
"test:mobile": "cypress run --config viewportWidth=375,viewportHeight=667",
"snyk-protect": "snyk-protect"
},
"dependencies": {
"@chakra-ui/anatomy": "^2.1.2",
"@chakra-ui/react": "^2.6.1",
"@chakra-ui/theme-tools": "^2.0.17",
"@dnd-kit/core": "^6.1.0",
"@dotlottie/react-player": "^1.6.15",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@hcaptcha/react-hcaptcha": "^1.4.4",
"@lexical/code": "^0.12.0",
"@lexical/link": "^0.12.0",
"@lexical/list": "^0.12.0",
"@lexical/markdown": "^0.12.0",
"@lexical/react": "^0.12.0",
"@lexical/rich-text": "^0.12.0",
"@lexical/selection": "^0.12.0",
"@lexical/utils": "^0.12.0",
"@metamask/onboarding": "^1.0.1",
"@nouns/assets": "^0.4.2",
"@snyk/protect": "latest",
"@tanstack/react-table": "^8.9.2",
"@vercel/kv": "^0.2.1",
"@vercel/og": "^0.5.0",
"@vercel/postgres": "^0.4.0",
"@visx/curve": "^3.3.0",
"@visx/xychart": "^3.4.1",
"@web3inbox/core": "^1.0.2",
"@web3inbox/react": "^1.0.2",
"@zag-js/combobox": "^0.16.0",
"@zag-js/react": "^0.16.0",
"chakra-react-select": "^4.5.0",
"color": "^4.2.3",
"colorthief": "^2.3.2",
"events": "^3.3.0",
"formidable": "^2.1.2",
"framer-motion": "^7.7.2",
"fuels": "^0.65.0",
"idb-keyval": "^6.2.0",
"jotai": "^2.4.3",
"js-confetti": "^0.11.0",
"lexical": "^0.12.0",
"next": "^12.3.4",
"phosphor-react": "^1.4.1",
"posthog-js": "^1.50.4",
"qrcode.react": "^3.1.0",
"randombytes": "^2.1.0",
"react": "^18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-error-boundary": "^4.0.11",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "7.43.9",
"react-intersection-observer": "^9.4.3",
"react-markdown": "^8.0.7",
"react-window": "^1.8.8",
"slugify": "^1.6.5",
"swr": "^2.2.4",
"viem": "^1.19.11",
"wagmi": "^1.4.8",
"wicg-inert": "^3.1.2"
},
"devDependencies": {
"@guildxyz/types": "1.3.4",
"@hookform/devtools": "^4.3.0",
"@svgr/webpack": "^6.5.1",
"@types/color": "^3.0.3",
"@types/node": "^18.14.2",
"@types/react": "^18.0.26",
"@types/react-google-recaptcha": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"cypress": "^13.3.2",
"dotenv-cli": "^7.1.0",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.3.4",
"eslint-config-prettier": "^8.6.0",
"husky": "^7.0.4",
"lint-staged": "^13.0.0",
"prettier": "^2.8.1",
"prettier-plugin-jsdoc": "^0.4.2",
"typescript": "^5.2.2"
},
"lint-staged": {
"./**/*.@(js|jsx|ts|tsx|css|md)": "prettier --write"
},
"snyk": true
}