-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3.19 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
{
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.31.0",
"@cosmjs/encoding": "^0.31.0",
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/proto-signing": "^0.31.0",
"@cosmjs/stargate": "^0.31.0",
"@cosmjs/tendermint-rpc": "^0.31.0",
"@dydxprotocol/v4-client-js": "^1.0.3",
"@headlessui/react": "^1.7.17",
"@headlessui/tailwindcss": "^0.2.0",
"@hookform/resolvers": "^3.3.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@vercel/node": "^3.0.9",
"@web3modal/ethereum": "^2.3.0",
"@web3modal/react": "^2.3.0",
"bignumber.js": "^9.1.0",
"classnames": "^2.3.2",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.6",
"dotenv": "^16.3.1",
"ethers": "^5",
"fuse.js": "^6.6.2",
"graz": "^0.1.1",
"long": "^5.2.3",
"lucide-react": "^0.291.0",
"mobile-detect": "^1.4.5",
"mycel-client-ts": "0.1.2",
"mycel-widget": "0.1.4",
"qrcode": "^1.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.18.0",
"swr": "^2.2.4",
"usehooks-ts": "^2.9.1",
"valibot": "^0.21.0",
"viem": "^1.19.9",
"vite-plugin-vercel-api": "^0.4.0",
"wagmi": "^1.4.5",
"yup": "^1.3.2"
},
"devDependencies": {
"@keplr-wallet/types": "^0.11.14",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rushstack/eslint-patch": "^1.2.0",
"@tailwindcss/forms": "^0.5.7",
"@types/crypto-js": "^4.1.1",
"@types/events": "^3.0.0",
"@types/jsdom": "^20.0.0",
"@types/node": "^18.11.8",
"@types/qrcode": "^1.5.0",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitejs/plugin-react": "^4.1.1",
"autoprefixer": "^10.4.16",
"clsx": "^2.0.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"events": "^3.3.0",
"husky": "^8.0.3",
"jsdom": "^20.0.2",
"lint-staged": "^15.0.2",
"node-stdlib-browser": "^1.2.0",
"postcss": "^8.4.31",
"prettier": "3.0.3",
"tailwind-merge": "^2.0.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-node-stdlib-browser": "^0.2.1"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"name": "mycel-frontend",
"private": true,
"scripts": {
"build": "vite build",
"preview": "vite preview",
"dev": "vite",
"dev:host": "vite --host",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"lint:fix": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json}'",
"lint-format": "yarn lint:fix && yarn format",
"postinstall": "node postinstall.cjs",
"prepare": "node prepare.cjs && husky install"
},
"type": "module",
"version": "0.4.3",
"lint-staged": {
"*.{js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint --cache --fix",
"*.--write": "prettier --write"
}
}