-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 3.45 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
{
"name": "vortex",
"private": true,
"version": "1.0.0",
"type": "module",
"packageManager": "[email protected]+sha512.837566d24eec14ec0f5f1411adb544e892b3454255e61fdef8fd05f3429480102806bac7446bc9daff3896b01ae4b62d00096c7e989f1596f2af10b927532f39",
"scripts": {
"dev": "vite --host",
"build": "tsc && NODE_OPTIONS='--max_old_space_size=8192' vite build && cp -R src/assets/coins dist/assets/coins && cp _redirects dist/_redirects",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"lint:ts": "tsc --noEmit",
"test": "vitest",
"format": "prettier . --write",
"verify": "yarn lint && yarn lint:ts && yarn test",
"postinstall": "husky install"
},
"dependencies": {
"@fontsource/roboto": "^5.0.8",
"@heroicons/react": "^2.1.3",
"@hookform/resolvers": "^3.4.2",
"@pendulum-chain/api": "^1.1.1",
"@pendulum-chain/api-solang": "^0.7.2",
"@polkadot/api": "^13.2.1",
"@polkadot/api-base": "^13.2.1",
"@polkadot/api-contract": "^13.2.1",
"@polkadot/api-derive": "^13.2.1",
"@polkadot/extension-dapp": "^0.53.1",
"@polkadot/keyring": "^13.1.1",
"@polkadot/rpc-augment": "^13.2.1",
"@polkadot/rpc-core": "^13.2.1",
"@polkadot/rpc-provider": "^13.2.1",
"@polkadot/types": "^13.2.1",
"@polkadot/util": "^13.1.1",
"@polkadot/util-crypto": "^13.1.1",
"@reown/appkit": "^1.6.8",
"@reown/appkit-adapter-wagmi": "^1.6.8",
"@safe-global/api-kit": "^2.5.9",
"@sentry/react": "^8.36.0",
"@sentry/vite-plugin": "^2.22.6",
"@slack/web-api": "^7.7.0",
"@tailwindcss/vite": "^4.0.3",
"@talismn/connect-components": "^1.1.9",
"@talismn/connect-wallets": "^1.2.5",
"@tanstack/react-query": "^5.64.2",
"@vitejs/plugin-react": "^4.3.4",
"@walletconnect/modal": "^2.6.2",
"@walletconnect/universal-provider": "^2.12.2",
"big.js": "^6.2.1",
"bn.js": "^5.2.1",
"buffer": "^6.0.3",
"motion": "^12.0.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.51.5",
"react-toastify": "^10.0.6",
"stellar-base": "^11.0.1",
"stellar-sdk": "^13.1.0",
"tailwindcss": "^4.0.3",
"viem": "^2.23.2",
"wagmi": "^2.14.11",
"web3": "^4.16.0",
"yup": "^1.4.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@pendulum-chain/types": "^1.1.1",
"@polkadot/types-augment": "^13.2.1",
"@polkadot/types-codec": "^13.2.1",
"@polkadot/types-create": "^13.2.1",
"@polkadot/types-known": "^13.2.1",
"@types/big.js": "^6",
"@types/bn.js": "^5",
"@types/node": "^22.7.5",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"babel-preset-vite": "^1.1.3",
"daisyui": "^5.0.0-beta.6",
"eslint": "^8.34.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"happy-dom": "^14.12.3",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-node-polyfills": "^0.23.0",
"vitest": "^3.0.4"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">=1.22.19"
},
"lint-staged": {
"*": "prettier --write"
}
}