-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
104 lines (104 loc) · 3.34 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
{
"name": "ton-console",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"dev-host": "vite --host",
"build": "tsc && vite build",
"build:staging": "tsc && vite build --mode staging",
"build:staging2": "tsc && vite build --mode staging2",
"preview": "vite preview",
"test": "vitest",
"lint": "eslint ./",
"prepare": "husky install",
"generate-api": "npx tsx ./scripts/swagger.ts",
"generate-webhooks": "npx tsx ./scripts/webhooks.ts",
"postinstall": "patch-package"
},
"dependencies": {
"@chakra-ui/anatomy": "^2.1.2",
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/react": "^2.6.1",
"@codemirror/lang-sql": "^6.5.4",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@lezer/highlight": "^1.1.6",
"@loadable/component": "^5.15.3",
"@react-hook/resize-observer": "^1.2.6",
"@ton-api/client": "^0.1.1",
"@ton/core": "^0.58.1",
"@ton/ton": "^15.0.0",
"@tonconnect/ui-react": "^2.0.9",
"@uiw/codemirror-theme-dracula": "^4.21.18",
"@uiw/react-codemirror": "^4.21.18",
"axios": "^1.7.7",
"bignumber.js": "^9.1.1",
"buffer": "^6.0.3",
"compose-function": "^3.0.3",
"csv-parse": "^5.5.2",
"framer-motion": "^10.2.3",
"i18next": "^22.4.11",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.1.1",
"mobx": "^6.7.0",
"mobx-persist-store": "^1.1.3",
"mobx-react-lite": "^3.4.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.43.5",
"react-i18next": "^12.2.0",
"react-imask": "~6.6.1",
"react-router-dom": "^6.9.0",
"react-textarea-autosize": "^8.5.3",
"react-virtualized-auto-sizer": "1.0.17",
"react-window": "^1.8.9",
"react-window-infinite-loader": "^1.0.9",
"recharts": "^2.5.0",
"ton-core": "^0.49.1"
},
"devDependencies": {
"@chakra-ui/styled-system": "^2.7.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/compose-function": "^0.0.30",
"@types/loadable__component": "^5.13.4",
"@types/node": "^20.16.6",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-window": "^1.8.5",
"@types/react-window-infinite-loader": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vitejs/plugin-react": "^4.3.1",
"csstype": "^3.1.1",
"eslint": "^8.33.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-chakra-ui": "^0.7.6",
"eslint-plugin-i18next": "^6.0.0-2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mobx": "^0.0.9",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lint-staged": "^15.2.10",
"patch-package": "^8.0.0",
"prettier": "^2.8.3",
"swagger-typescript-api": "^13.0.5",
"tsx": "^4.16.2",
"typescript": "^5.6.2",
"vite": "^5.4.6",
"vite-plugin-html": "^3.2.2",
"vite-plugin-mkcert": "^1.13.3",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "^2.1.1"
}
}