-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.49 KB
/
package.json
File metadata and controls
106 lines (106 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
{
"name": "shielding-dapp",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"lint:code": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:styles": "stylelint '**/*.{tsx,ts,js}' --ignore-path .gitignore",
"lint": "run-p lint:* -c",
"lint-feature-branch-commits": "npx commitlint --from main --to HEAD --verbose",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build --stats-json",
"generate-icons": "tsx scripts/generateIcons.ts"
},
"dependencies": {
"@cardinal-cryptography/shielder-sdk": "^0.2.0-beta.8",
"@cardinal-cryptography/shielder-sdk-crypto": "^0.2.0-beta.4",
"@cardinal-cryptography/shielder-sdk-crypto-wasm": "^0.2.0-beta.4",
"@faker-js/faker": "^9.8.0",
"@number-flow/react": "^0.5.7",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-popover": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.7",
"@react-hookz/web": "^25.1.0",
"@reown/appkit": "^1.7.0",
"@reown/appkit-adapter-wagmi": "^1.7.0",
"@swan-io/chicane": "^2.1.0",
"@tanstack/react-query": "^5.67.3",
"@walletconnect/core": "^2.19.1",
"@walletconnect/ethereum-provider": "^2.19.1",
"bignumber.js": "^9.1.2",
"buffer": "^6.0.3",
"fake-indexeddb": "^6.0.1",
"idb": "^8.0.2",
"memoizee": "^0.4.17",
"motion": "^12.4.12",
"posthog-js": "^1.236.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-merge-refs": "^2.1.1",
"rooks": "^8.0.0",
"simplebar-react": "^3.3.1",
"styled-components": "^6.1.15",
"styled-reset": "^4.5.2",
"ts-pattern": "^5.6.2",
"tsafe": "^1.8.5",
"utility-types": "^3.11.0",
"uuid": "^11.1.0",
"viem": "^2.23.14",
"vite-plugin-svgr": "^4.3.0",
"wagmi": "^2.14.15",
"yaml": "^2.7.1",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.5",
"@commitlint/cli": "^19.7.1",
"@eslint/compat": "^1.2.7",
"@eslint/js": "^9.21.0",
"@storybook/addon-essentials": "^8.6.4",
"@storybook/addon-interactions": "^8.6.4",
"@storybook/addon-links": "^8.6.4",
"@storybook/addon-onboarding": "^8.6.4",
"@storybook/blocks": "^8.6.4",
"@storybook/react": "^8.6.4",
"@storybook/react-vite": "^8.6.4",
"@storybook/test": "^8.6.4",
"@stylistic/eslint-plugin": "^4.2.0",
"@types/memoizee": "^0.4.11",
"@types/node": "^22.13.9",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.21.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow-functions": "^3.6.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-storybook": "^0.11.3",
"globals": "^15.15.0",
"jsdom": "^26.0.0",
"npm-run-all": "^4.1.5",
"postcss-styled-syntax": "^0.7.1",
"semver-regex": "^4.0.5",
"storybook-addon-manual-mocks": "^1.0.4",
"stylelint": "^16.15.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-order": "^6.0.4",
"tsx": "^4.19.3",
"type-fest": "^4.37.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0",
"vite-plugin-static-copy": "^2.3.1",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.7"
}
}