-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.29 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
{
"name": "dezswap-web-app",
"private": true,
"version": "0.0.0",
"homepage": "https://app.dezswap.io",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext .ts,.tsx src",
"format": "prettier **/*.ts **/*.tsx --write",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint",
"prettier --write",
"git add"
]
},
"dependencies": {
"@cosmostation/extension-client": "^0.1.15",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@rollup/plugin-inject": "^5.0.3",
"@tanstack/react-query": "^4.29.7",
"@tippyjs/react": "^4.2.6",
"@xpla/wallet-controller": "^0.4.1",
"@xpla/wallet-provider": "^0.4.1",
"@xpla/xpla.js": "^0.3.1",
"axios": "^1.1.3",
"buffer": "^6.0.3",
"cosmjs-types": "^0.7.2",
"decimal.js": "^10.2.1",
"emotion-reset": "^3.0.1",
"jotai": "^2.1.0",
"rc-slider": "^10.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-grid-system": "^8.1.6",
"react-hook-form": "^7.40.0",
"react-modal": "^3.16.1",
"react-router-dom": "^6.22.3",
"react-tiny-popover": "^7.2.0",
"resize-observer-polyfill": "^1.5.1",
"simplebar": "^6.2.1",
"tippy.js": "^6.3.7",
"vite-plugin-svgr": "^3.2.0"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.10.2",
"@types/node": "^20.1.1",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"prettier": "^2.7.1",
"typescript": "^5.3.3",
"vite": "^4.1.4",
"vite-compatible-readable-stream": "^3.6.1",
"vite-plugin-node-polyfills": "^0.8.2",
"vite-tsconfig-paths": "^4.2.0"
}
}