-
Notifications
You must be signed in to change notification settings - Fork 458
/
Copy pathpackage.json
118 lines (118 loc) · 3.79 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
109
110
111
112
113
114
115
116
117
118
{
"name": "fuels-wallet",
"private": true,
"version": "0.45.0",
"type": "module",
"database": "23",
"scripts": {
"build:all": "run-s build:web build:crx build:storybook",
"build:web": "./scripts/build.sh --app=vite",
"build:crx": "./scripts/build.sh --app=crx",
"build:storybook": "./scripts/build.sh --app=storybook",
"dev": "vite",
"dev:crx": "vite --config vite.crx.config.ts --mode ${NODE_ENV:-development}",
"dev:storybook": "storybook dev -p 6006",
"preview": "vite preview",
"test": "jest --verbose",
"test:ci": "pnpm ts:check && pnpm test",
"test:watch": "jest --watch",
"ts:check": "pnpm xstate:typegen && tsc --noEmit",
"xstate:typegen": "xstate typegen 'src/**/*.ts?(x)'"
},
"dependencies": {
"@fontsource/source-code-pro": "5.0.13",
"@fuel-ui/css": "0.23.3",
"@fuel-ui/icons": "0.23.3",
"@fuel-ui/react": "0.23.3",
"@fuel-ui/test-utils": "0.17.0",
"@fuel-wallet/connections": "workspace:*",
"@fuels/local-storage": "0.26.0",
"@fuels/playwright-utils": "workspace:*",
"@fuels/react-xstore": "0.20.0",
"@hookform/resolvers": "3.9.0",
"@react-aria/utils": "3.21.0",
"@sentry/react": "8.33.1",
"@storybook/addon-viewport": "7.4.6",
"@storybook/jest": "0.2.3",
"@tanstack/react-query": "5.28.4",
"@xstate/react": "3.2.2",
"compare-versions": "6.1.0",
"cross-fetch": "4.0.0",
"dayjs": "1.11.10",
"dexie": "4.0.9",
"dexie-observable": "4.0.1-beta.13",
"ethers": "5.7.2",
"events": "3.3.0",
"fake-indexeddb": "4.0.2",
"framer-motion": "10.16.4",
"fuels": "0.96.1",
"json-edit-react": "1.13.3",
"json-rpc-2.0": "1.7.0",
"lodash.debounce": "4.0.8",
"ramda": "0.30.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet": "6.1.0",
"react-hook-form": "7.47.0",
"react-json-view": "1.21.3",
"react-qr-code": "2.0.12",
"react-router-dom": "6.26.2",
"tai64": "1.0.0",
"uuid": "^9.0.1",
"vite-plugin-markdown": "2.2.0",
"xstate": "4.38.2",
"yup": "1.4.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.28",
"@fuel-wallet/types": "workspace:*",
"@fuels/connectors": "0.35.1",
"@playwright/test": "1.46.1",
"@sentry/cli": "2.33.1",
"@storybook/addon-a11y": "7.4.6",
"@storybook/addon-actions": "7.4.6",
"@storybook/addon-essentials": "7.4.6",
"@storybook/addon-interactions": "7.4.6",
"@storybook/addon-jest": "7.4.6",
"@storybook/addon-links": "7.4.6",
"@storybook/addon-storysource": "7.4.6",
"@storybook/addons": "7.4.6",
"@storybook/api": "7.4.6",
"@storybook/components": "7.4.6",
"@storybook/core-events": "7.4.6",
"@storybook/jest": "0.2.3",
"@storybook/react": "7.4.6",
"@storybook/react-vite": "7.4.6",
"@storybook/react-webpack5": "7.4.6",
"@storybook/testing-library": "0.2.2",
"@storybook/theming": "7.4.6",
"@tanstack/react-query-devtools": "5.28.4",
"@testing-library/react": "14.0.0",
"@types/chrome": "0.0.246",
"@types/lodash.debounce": "4.0.7",
"@types/ramda": "0.30.1",
"@types/react": "18.3.3",
"@types/react-custom-scroll": "5.0.1",
"@types/react-dom": "18.3.0",
"@types/react-helmet": "6.1.7",
"@vitejs/plugin-react": "4.1.0",
"@xstate/inspect": "0.8.0",
"jszip": "3.10.1",
"msw": "1.3.2",
"msw-storybook-addon": "1.9.0",
"storybook": "7.4.6",
"storybook-addon-react-router-v6": "2.0.7",
"storybook-dark-mode": "3.0.1",
"ts-jest-mock-import-meta": "1.1.0",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "5.2.2",
"vite": "6.0.3",
"vite-plugin-clean": "1.0.0",
"vite-plugin-static-copy": "2.2.0",
"vite-tsconfig-paths": "5.1.4",
"whatwg-fetch": "3.6.20"
},
"msw": {
"workerDirectory": "public"
}
}