-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.46 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.46 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
{
"name": "reactjs-template",
"private": true,
"version": "0.0.1",
"type": "module",
"homepage": "https://telegram-mini-apps.github.io/reactjs-template",
"scripts": {
"deploy": "gh-pages -d dist",
"dev": "vite",
"dev:https": "cross-env HTTPS=true vite",
"build": "tsc --noEmit && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"preview": "vite preview",
"predeploy": "npm run build"
},
"dependencies": {
"@telegram-apps/telegram-ui": "^2.1.9",
"@tma.js/sdk-react": "^3.0.8",
"@tonconnect/ui-react": "^2.2.0",
"eruda": "^3.4.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/node": "^20.19.11",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitejs/plugin-react-swc": "^3.11.0",
"cross-env": "^7.0.3",
"eslint": "^9.34.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"gh-pages": "^6.3.0",
"globals": "^15.15.0",
"terser": "^5.44.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0",
"vite": "^6.3.5",
"vite-plugin-mkcert": "^1.17.8",
"vite-tsconfig-paths": "^5.1.4"
}
}