forked from ephemeraHQ/xmtp-inbox-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 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
{
"name": "xmtp-inbox-web",
"version": "1.0.0",
"private": true,
"homepage": "https://github.com/wallet-dm/xmtp-dapp",
"bugs": {
"url": "https://github.com/wallet-dm/xmtp-dapp/issues"
},
"repository": {
"type": "git",
"url": "https:git@github.com:wallet-dm/xmtp-dapp.git"
},
"license": "MIT",
"author": "XMTP Labs <eng@xmtp.com>",
"type": "module",
"scripts": {
"build": "vite build",
"build-storybook": "build-storybook",
"clean": "npm run clean:build && rm -rf node_modules",
"clean:build": "rm -rf dist",
"cypress": "cypress run --browser chrome",
"cypress:open": "cypress open --browser chrome",
"dev": "vite",
"e2e:headless": "start-server-and-test dev http://localhost:5173 cypress",
"format:check": "prettier -c --ignore-path .gitignore --ignore-path .prettierignore .",
"format:fix": "prettier -w --ignore-path .gitignore --ignore-path .prettierignore .",
"postinstall": "patch-package",
"lint": "eslint . --ignore-path .gitignore",
"preview": "vite preview",
"storybook": "storybook dev",
"test": "vitest run",
"typecheck": "tsc"
},
"dependencies": {
"@datadog/browser-rum": "^4.38.0",
"@headlessui/react": "^1.4.3",
"@heroicons/react": "^1.0.5",
"@ipld/car": "^5.2.5",
"@wagmi/core": "^1.4.13",
"@web3-storage/w3up-client": "^12.5.0",
"@web3modal/wagmi": "^3.5.7",
"@xmtp/content-type-remote-attachment": "^1.1.8",
"@xmtp/content-type-reply": "^1.1.9",
"@xmtp/experimental-content-type-screen-effect": "^1.0.2",
"@xmtp/frames-client": "0.4.2",
"@xmtp/react-sdk": "^6.0.0",
"buffer": "^6.0.3",
"date-fns": "^2.29.3",
"dexie": "^3.2.4",
"emojibase": "^6.1.0",
"i18next": "^22.4.13",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.2.0",
"interweave": "^13.1.0",
"interweave-autolink": "^5.1.0",
"interweave-emoji": "^7.0.0",
"lodash": "^4.17.21",
"react": "18.2.0",
"react-blockies": "^1.4.1",
"react-dom": "18.2.0",
"react-i18next": "^12.2.0",
"react-media-recorder-2": "^1.6.23",
"react-medium-image-zoom": "^5.1.6",
"react-qrcode-logo": "^2.9.0",
"react-router-dom": "^6.12.0",
"react-timer-hook": "^3.0.6",
"react-tooltip": "^5.19.0",
"react-virtuoso": "^4.3.4",
"viem": "^1.21.4",
"wagmi": "^1.4.13",
"web3.storage": "^4.5.4",
"zustand": "^4.3.2"
},
"devDependencies": {
"@open-frames/proxy-client": "0.2.0",
"@tailwindcss/forms": "^0.5.7",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"cypress": "^13.6.6",
"cypress-vite": "^1.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xmtp-web": "^1.0.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-prettier": "^5.1.3",
"happy-dom": "^13.6.2",
"patch-package": "^8.0.0",
"postcss": "^8.4.21",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.4.12",
"start-server-and-test": "^2.0.3",
"tailwindcss": "^3.4.1",
"typescript": "^5.0.4",
"vite": "^5.1.4",
"vitest": "^1.3.1"
}
}