-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 3.42 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
{
"name": "groups-ui",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"gen:theme-typings": "chakra-cli tokens ./src/theme",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"lint": "yarn lint:format && yarn lint:fix ",
"test": "yarn vitest",
"type-check": "tsc",
"storybook": "storybook dev -p 6006",
"storybook-clean": "rm -rf ./node_modules/.cache/storybook",
"build-storybook": "storybook build"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.7.0",
"@cosmjs/amino": "0.29.5",
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/proto-signing": "0.29.4",
"@cosmjs/stargate": "0.29.4",
"@cosmjs/tendermint-rpc": "^0.29.4",
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@hookform/resolvers": "^3.1.0",
"@keplr-wallet/cosmos": "^0.11.59",
"@keplr-wallet/stores": "^0.11.59",
"@osmonauts/helpers": "^0.7.0",
"@regen-network/api": "^1.0.0-alpha1",
"@tanstack/react-query": "^4.29.5",
"@tanstack/react-table": "^8.9.1",
"chakra-react-select": "^4.4.3",
"chakra-ui-steps": "^2.1.0",
"chart.js": "^4.3.0",
"dayjs": "^1.11.8",
"framer-motion": "^10.12.8",
"ipfs-http-client": "^60.0.0",
"jotai": "^2.1.1",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.9",
"react-hook-form": "^7.44.3",
"react-icons": "^4.7.1",
"react-router-dom": "^6.12.0",
"remeda": "^1.14.0",
"valtio": "^1.10.5",
"zod": "^3.20.2"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@chakra-ui/cli": "^2.4.1",
"@chakra-ui/storybook-addon": "^4.0.17",
"@keplr-wallet/types": "^0.11.59",
"@storybook/addon-actions": "^7.0.18",
"@storybook/addon-essentials": "^7.0.18",
"@storybook/addon-interactions": "^7.0.18",
"@storybook/addon-links": "^7.0.18",
"@storybook/react": "^7.0.18",
"@storybook/react-vite": "^7.0.18",
"@storybook/testing-library": "^0.1.0",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vitejs/plugin-react": "^4.0.0",
"babel-loader": "^9.1.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-valtio": "^0.6.1",
"long": "^5.2.3",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"rollup-plugin-visualizer": "^5.9.0",
"storybook": "^7.0.18",
"storybook-addon-react-router-v6": "^1.0.2",
"ts-proto": "^1.148.2",
"typescript": "^5.1.3",
"vite": "4.2.3",
"vite-plugin-checker": "^0.6.0",
"vite-plugin-fonts": "^0.7.0",
"vite-tsconfig-paths": "^4.0.3",
"vitest": "^0.32.0"
},
"pre-commit": "lint",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}