-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
73 lines (73 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
{
"name": "rainbow-swap",
"license": "Apache-2.0",
"version": "0.0.0",
"type": "module",
"scripts": {
"ts": "tsc --pretty",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"start": "vite --host",
"build": "tsc && vite build",
"build:contract": "node --no-warnings=ExperimentalWarning --loader ts-node/esm contracts/build.ts",
"preview": "vite preview",
"find-deadcode": "ts-prune --error"
},
"dependencies": {
"@floating-ui/react": "^0.27.3",
"@lottiefiles/dotlottie-react": "^0.12.1",
"@reduxjs/toolkit": "^2.5.0",
"@rnw-community/shared": "^0.83.0",
"@ton-api/client": "^0.3.1",
"@ton/core": "^0.59.1",
"@ton/crypto": "^3.3.0",
"@tonconnect/ui": "^2.0.9",
"axios": "^1.7.9",
"buffer": "^6.0.3",
"lodash-es": "^4.17.21",
"rainbow-swap-sdk": "^1.5.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-ga4": "^2.1.0",
"react-helmet": "^6.1.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.1.1",
"react-toastify": "^11.0.2",
"react-window": "^1.8.11",
"redux-observable": "^3.0.0-rc.2",
"redux-persist": "^6.0.0",
"rxjs": "^7.8.1",
"swiper": "^11.2.1",
"ts-action": "^11.0.0",
"ts-action-operators": "^9.1.2",
"ts-retry-promise": "^0.8.1"
},
"devDependencies": {
"@ton-community/func-js": "^0.9.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.12.11",
"@types/react": "^19.0.6",
"@types/react-dom": "^19.0.3",
"@types/react-helmet": "^6.1.11",
"@types/react-window": "^1.8.8",
"@types/telegram-web-app": "^7.10.1",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.18",
"prettier": "^3.4.2",
"rollup-plugin-visualizer": "^5.14.0",
"terser": "^5.37.0",
"ts-node": "^10.9.2",
"ts-prune": "^0.10.3",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-mkcert": "^1.17.6",
"vite-plugin-terminal": "^1.2.0"
}
}