-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.5 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
{
"name": "oros",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"check": "tsc -p tsconfig.app.json",
"fix": "eslint . --fix",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest src",
"test:integration": "vitest tests",
"test:e2e": "playwright test",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@cosmjs/amino": "^0.27.0",
"@cosmjs/proto-signing": "^0.27.0",
"@cosmjs/stargate": "^0.27.0",
"@fontsource/inter": "^5.1.0",
"@hanchon/signature-to-pubkey": "^1.0.0",
"@kava-labs/javascript-sdk": "^14.0.0-beta-6",
"@streamparser/json": "^0.0.21",
"@testing-library/jest-dom": "^6.6.3",
"bech32": "^2.0.0",
"big.js": "^6.1.1",
"dompurify": "^3.2.2",
"dotenv": "^16.4.7",
"ethers": "^6.13.4",
"long": "^5.2.3",
"lucide-react": "^0.469.0",
"marked": "^15.0.2",
"openai": "^4.73.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"uuid": "^11.0.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@eslint/js": "^9.15.0",
"@playwright/test": "^1.49.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/big.js": "^6.1.1",
"@types/node": "^22.10.0",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-storybook": "^0.11.1",
"fake-indexeddb": "^6.0.0",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"msw": "^2.6.8",
"prettier": "^3.4.2",
"storybook": "^8.4.7",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.0",
"vite-plugin-node-polyfills": "^0.23.0",
"vitest": "^2.1.6",
"vitest-dom": "^0.1.1"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}