forked from evgeny-nadymov/telegram-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.84 KB
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
{
"homepage": "/",
"name": "telegram_react",
"version": "0.0.656",
"private": true,
"engines": {
"node": ">=22.12.0",
"npm": ">=10"
},
"dependencies": {
"@material-ui/core": "^4.8.0",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.36",
"assert": "2.1.0",
"buffer": "6.0.3",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.0.8",
"crypto-browserify": "3.12.1",
"dateformat": "^3.0.3",
"emoji-mart": "^2.10.0",
"emoji-regex": "^8.0.0",
"events": "^3.0.0",
"i18next": "26.2.0",
"i18next-localstorage-backend": "^2.1.2",
"idb-keyval": "^3.2.0",
"iframe-resizer": "^4.2.1",
"libphonenumber-js": "^1.7.13",
"localforage": "1.10.0",
"lottie-web": "^5.5.10",
"notistack": "^0.5.1",
"os-browserify": "0.3.0",
"pako": "^1.0.10",
"path-browserify": "1.0.1",
"process": "^0.11.10",
"qrcode": "^1.5.4",
"react": "^16.12.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.12.0",
"react-file-download": "^0.3.5",
"react-i18next": "17.0.11",
"react-iframe-resizer-super": "^0.2.2",
"react-router-dom": "^5.0.0",
"stream-browserify": "3.0.0",
"telegram": "^2.26.22",
"universal-cookie": "8.1.2",
"util": "0.12.5",
"workbox-core": "7.4.0",
"workbox-precaching": "7.4.0",
"workbox-routing": "7.4.0"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --print-width 120 --tab-width 4 --single-quote --jsx-single-quote --jsx-bracket-same-line --bracket-spacing --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"start": "vite",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest --globals --environment jsdom",
"test:run": "vitest run --globals --environment jsdom",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"stats": "vite build --mode analyze",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.{js,jsx,json,css}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,json,css}\"",
"quality": "npm run lint && npm run format:check"
},
"devDependencies": {
"@vitejs/plugin-react": "5.2.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "6.3.0",
"husky": "9.1.7",
"jsdom": "27.4.0",
"lint-staged": "16.2.7",
"prettier": "^2.8.0",
"prop-types": "^15.7.2",
"rollup-plugin-visualizer": "7.0.1",
"vite": "7.3.6",
"vite-plugin-node-polyfills": "0.28.0",
"vite-plugin-pwa": "1.3.0",
"vite-plugin-svgr": "4.5.0",
"vitest": "4.1.10"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"overrides": {
"node-fetch": "2.7.0"
}
}