-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
43 lines (43 loc) · 1.33 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
{
"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",
"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/sdk-react": "^2.0.10",
"@telegram-apps/telegram-ui": "^2.1.5",
"@tonconnect/ui-react": "^2.0.5",
"eruda": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.23.0"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/node": "^20.12.11",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"gh-pages": "^6.1.1",
"globals": "^15.2.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"vite": "^5.2.11",
"vite-plugin-mkcert": "^1.17.6",
"vite-tsconfig-paths": "^4.3.2"
}
}