-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.49 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.49 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
{
"name": "wallet",
"version": "0.1.2",
"license": "MPL-2.0",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/status-im/status-web.git",
"directory": "apps/wallet"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "wxt prepare",
"test": "vitest run",
"dev": "pnpm dev:chrome",
"dev:chrome": "wxt -b chrome -p 4000 --mode development",
"dev:firefox": "wxt -b firefox -p 4000 --mode development",
"build": "pnpm build:chrome && pnpm build:types",
"build:chrome": "wxt build -b chrome --mode production",
"build:firefox": "wxt build -b firefox --mode production",
"build:types": "tsc --noEmit",
"zip:chrome": "wxt zip -b chrome",
"zip:firefox": "wxt zip -b firefox",
"lint": "eslint src",
"format": "prettier --write .",
"clean": "rimraf .wxt .output node_modules .turbo"
},
"dependencies": {
"@cardano-sdk/core": "^0.45.4",
"@cardano-sdk/crypto": "^0.2.3",
"@cardano-sdk/key-management": "^0.27.5",
"@hookform/resolvers": "^3.1.1",
"@lifi/widget": "^3.40.12",
"@metamask/browser-passworder": "^6.0.0",
"@qrkit/core": "^0.6.0",
"@qrkit/react": "^0.5.0",
"@radix-ui/react-dialog": "^1.1.1",
"@status-im/colors": "workspace:*",
"@status-im/ethereum-provider": "workspace:*",
"@status-im/components": "workspace:*",
"@status-im/icons": "workspace:*",
"@status-im/wallet": "workspace:*",
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-query-devtools": "^5.66.0",
"@tanstack/react-router": "^1.109.2",
"@trpc/client": "10.45.2",
"@trpc/server": "10.45.2",
"@trustwallet/wallet-core": "^4.3.6",
"@wxt-dev/storage": "^1.1.0",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"bitcoinjs-lib": "^6.1.7",
"bitcore-lib": "^10.8.0",
"buffer": "^6.0.3",
"class-variance-authority": "^0.7.1",
"ethers": "^6.15.0",
"long": "^5.3.1",
"react": "19.1.2",
"react-dom": "19.1.2",
"react-hook-form": "^7.54.2",
"rehype-react": "^8.0.0",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"superjson": "^2.2.1",
"trpc-chrome": "^1.0.0",
"ts-pattern": "^5.7.1",
"unified": "^11.0.5",
"viem": "^2.44.1",
"vite-plugin-node-polyfills": "^0.23.0",
"wagmi": "^3.3.2",
"zod": "3.25.76"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@status-im/eslint-config": "workspace:*",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/router-devtools": "^1.109.2",
"@tanstack/router-plugin": "^1.109.2",
"@types/chrome": "^0.0.280",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"@wxt-dev/auto-icons": "^1.0.2",
"@wxt-dev/module-react": "^1.1.2",
"autoprefixer": "^10.4.19",
"globals": "^15.12.0",
"postcss": "^8.4.38",
"postcss-load-config": "^6.0.1",
"prettier": "3.2.4",
"prettier-plugin-tailwindcss": "^0.6.1",
"rimraf": "^4.4.1",
"tailwind-merge": "^2.3.0",
"tailwind-scrollbar-utilities": "^0.2.0",
"tailwindcss": "^3.4.11",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.1.4",
"wxt": "^0.19.13"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs}": [
"eslint",
"prettier --write"
],
"*.{yml,yaml,json}": [
"prettier --write"
]
}
}