-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
81 lines (81 loc) · 2.63 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
{
"name": "web3inbox",
"private": true,
"version": "0.0.0",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && yarn buildMessager",
"buildMessager": "esbuild ./src/firebase-messaging-sw.ts --bundle --minify --outfile=./dist/firebase-messaging-sw.js",
"preview": "vite preview",
"lint": "eslint .",
"prepare": "husky install",
"prettier": "prettier --check '**/*.{js,ts,jsx,tsx,scss}'",
"prettier:write": "prettier --write '**/*.{js,ts,jsx,tsx,scss}'",
"playwright:install": "playwright install --with-deps",
"playwright:test": "playwright test",
"playwright:test:canary": "playwright test --retries=0 --grep canary.spec.ts --project=chromium",
"playwright:debug": "playwright test --debug"
},
"resolutions": {
"@walletconnect/ethereum-provider": "2.13.3"
},
"dependencies": {
"@sentry/react": "^7.93.0",
"@tanstack/react-query": "^5.20.1",
"@walletconnect/identity-keys": "^2.0.1",
"@walletconnect/notify-message-decrypter": "^0.1.0",
"@web3inbox/core": "1.4.0",
"@web3inbox/react": "^1.4.0-efaaba3",
"@web3modal/wagmi": "4.2.3",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"detect-browser": "^5.3.0",
"firebase": "^10.1.0",
"framer-motion": "^10.3.0",
"idb": "^7.1.1",
"lodash.debounce": "^4.0.8",
"mixpanel-browser": "^2.47.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-qr-reader-es6": "^2.2.1-2",
"react-router-dom": "^6.4.4",
"react-select": "^5.7.0",
"viem": "2.16.5",
"vite-plugin-pwa": "^0.20.0",
"wagmi": "2.10.9"
},
"devDependencies": {
"@aws-sdk/client-cloudwatch": "^3.535.0",
"@playwright/test": "^1.40.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/lodash.debounce": "^4.0.7",
"@types/mixpanel-browser": "^2.47.1",
"@types/node": "^20.10.5",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"dotenv": "16.4.5",
"esbuild": "^0.21.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"localStorage": "^1.0.4",
"postcss": "^8.4.21",
"prettier": "3.3.2",
"sass": "^1.56.1",
"typescript": "^5.0.4",
"vite": "^3.2.3",
"vite-plugin-node-polyfills": "^0.22.0",
"workbox-core": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-window": "^6.5.4"
}
}