-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.93 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
{
"name": "dex-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "npx vite",
"dev": "npx vite",
"dev-host": "npx vite --host",
"build": "npx vite build",
"lint": "npx eslint src --ext ts,tsx",
"lint:fix": "npx eslint src --ext ts,tsx --fix",
"lint:css": "npx stylelint \"src/**/*.{css,pcss}\" --fix",
"format": "npx prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md,css,pcss}\"",
"preview": "npx vite preview",
"test": "npx vitest --run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint:fix && git add -A .",
"pre-push": "npm run test"
}
},
"dependencies": {
"@lifi/sdk": "^2.5.0",
"@react-spring/web": "^9.7.3",
"@reown/appkit": "^1.6.2",
"@reown/appkit-adapter-wagmi": "^1.6.2",
"@tabler/icons-react": "^2.34.0",
"@tanstack/react-query": "^5.62.8",
"@uiball/loaders": "^1.3.0",
"axios": "^1.5.0",
"bignumber": "^1.1.0",
"dayjs": "^1.11.10",
"ethers": "^5.7.2",
"i18next": "^23.6.0",
"lanca-sdk-demo": "^0.0.51",
"lightweight-charts": "^4.0.1",
"posthog-js": "^1.148.0",
"rango-sdk": "^0.1.40",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.3.1",
"react-router-dom": "^6.16.0",
"react-tooltip": "^5.28.0",
"react-ts-tradingview-widgets": "^1.2.0",
"recharts": "^2.8.0",
"solady": "^0.0.277",
"viem": "^2.21.55",
"wagmi": "^2.9.3"
},
"devDependencies": {
"@lifi/types": "^10.1.0",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.3.2",
"@welldone-software/why-did-you-render": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"jest-mock": "^29.7.0",
"jsdom": "^21.1.2",
"postcss": "^8.4.37",
"postcss-preset-env": "^9.5.2",
"precss": "^4.0.0",
"prettier": "^3.2.5",
"source-map-explorer": "^2.5.3",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-standard": "^20.0.0",
"typescript": "^5.2.2",
"typescript-plugin-css-modules": "^5.0.1",
"vite": "^5.1.6",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-stylelint": "^5.3.1",
"vitest": "^0.30.1"
}
}