-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.54 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
{
"name": "telegram-mini-app-template",
"version": "1.0.0",
"private": true,
"engines": {
"node": "20.15.1"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typescript:check": "tsc --noEmit",
"prettier:check": "prettier . --check --ignore-unknown",
"prettier:fix": "prettier . --write --ignore-unknown",
"eslint:check": "eslint .",
"eslint:fix": "eslint . --fix",
"prepare": "husky"
},
"dependencies": {
"@telegram-apps/sdk-react": "1.1.3",
"@tonconnect/ui-react": "2.0.6",
"classnames": "2.5.1",
"geist": "1.3.0",
"next": "14.2.5",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "14.2.5",
"@types/node": "20.14.10",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"eslint": "8.57.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-react": "7.34.4",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"postcss": "8.4.39",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.5",
"tailwindcss": "3.4.5",
"typescript": "5.5.3"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"lint-staged": {
"*.!.{ts,tsx}": "prettier --write --ignore-unknown",
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}