generated from koval01/nextjs-tma-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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": "tfeed",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"dev:https": "next dev --experimental-https",
"build": "next build",
"start": "pnpm run build && next start",
"lint": "next lint",
"pages:build": "npx @cloudflare/next-on-pages",
"preview": "pnpm run pages:build && wrangler pages dev",
"deploy": "pnpm run pages:build && wrangler pages deploy"
},
"dependencies": {
"@next/third-parties": "^15.1.5",
"@reduxjs/toolkit": "^2.5.0",
"@sentry/nextjs": "^8.50.0",
"@vkontakte/icons": "^2.161.0",
"@vkontakte/vkui": "^7.1.1",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"html-react-parser": "^5.2.2",
"i18next": "^24.2.1",
"lodash": "^4.17.21",
"lucide-react": "^0.473.0",
"next": "^15.1.5",
"normalize.css": "^8.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.4.0",
"react-intersection-observer": "^9.15.0",
"react-loading-indicators": "^1.0.0",
"react-player": "^2.16.0",
"react-redux": "^9.2.0",
"react-virtuoso": "^4.12.3",
"spoiled": "^0.3.3",
"swr": "^2.3.0",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@cloudflare/next-on-pages": "1.13.3",
"@emotion/react": "^11.14.0",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"eslint": "^9.18.0",
"eslint-config-next": "^15.1.5",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vercel": "39.1.1"
},
"overrides": {
"vercel": "$vercel"
}
}