forked from Telegram-Mini-Apps/reactjs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.95 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.95 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
{
"name": "reactjs-template",
"private": true,
"version": "0.0.1",
"type": "module",
"homepage": "https://telegram-mini-apps.github.io/reactjs-template",
"scripts": {
"dev": "npm run lint && npm run build && vite",
"dev:https": "cross-env HTTPS=true vite",
"build": "tsc --noEmit && vite build",
"lint": "npx tsx lint.ts src/",
"preview": "vite preview",
"deploy": "gh-pages -d dist",
"predeploy": "npm run build"
},
"dependencies": {
"@telegram-apps/sdk-react": "^3.3.1",
"@telegram-apps/telegram-ui": "^2.1.8",
"@ton-ai-core/devtrace": "^0.2.2",
"@tonconnect/ui-react": "^2.1.0",
"error-stack-parser-es": "^1.0.5",
"eruda": "^3.4.1",
"lovable-tagger": "^1.1.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.23.0",
"stacktrace-js": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/plugin-syntax-jsx": "^7.27.1",
"@babel/plugin-syntax-typescript": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
"@eslint/js": "^9.23.0",
"@ton-ai-core/eslint-plugin-suggest-members": "^1.6.2",
"@types/node": "^20.12.11",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitejs/plugin-react-swc": "^3.8.1",
"cross-env": "^7.0.3",
"eslint": "^9.23.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"gh-pages": "^6.1.1",
"globals": "^15.2.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0",
"vite": "^6.2.4",
"vite-plugin-babel": "^1.3.2",
"vite-plugin-checker": "^0.10.2",
"vite-plugin-mkcert": "^1.17.8",
"vite-plugin-run": "^0.6.1",
"vite-tsconfig-paths": "^5.1.4",
"zone.js": "^0.15.1"
}
}