-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1018 Bytes
/
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
{
"name": "tma-nextjs-starter",
"version": "0.1.0",
"private": true,
"description": "A Next.js starter with TypeScript, Tailwind CSS, and ESLint, with TMA SDK",
"author": {
"name": "liect",
"email": "[email protected]"
},
"scripts": {
"dev": "next dev",
"dev-https": "next dev --experimental-https",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@tanstack/react-query": "^5.59.15",
"@tma.js/sdk-react": "^2.2.8",
"@tonconnect/ui-react": "^2.0.9",
"@vercel/analytics": "^1.3.1",
"framer-motion": "^11.11.9",
"ky": "^1.7.2",
"next": "14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.16.13",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.3",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
}
}