-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) Β· 1.83 KB
/
package.json
File metadata and controls
61 lines (61 loc) Β· 1.83 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "tonroute",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"bot": "tsx scripts/run-bot.ts",
"bot:smoke": "tsx scripts/bot-smoke.ts",
"check": "npm run lint && npm run typecheck && npm test && npm run build",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts",
"bot:webhook:set": "tsx scripts/telegram-webhook.ts register",
"bot:webhook:info": "tsx scripts/telegram-webhook.ts info",
"bot:webhook:delete": "tsx scripts/telegram-webhook.ts delete",
"bot:polling": "tsx scripts/run-bot.ts"
},
"dependencies": {
"@ston-fi/sdk": "2.7.0",
"@ton/core": "0.63.1",
"@ton/crypto": "3.3.0",
"@ton/ton": "16.2.4",
"@tonconnect/sdk": "3.4.1",
"@tonconnect/ui-react": "2.4.4",
"clsx": "2.1.1",
"dotenv": "17.2.3",
"next": "16.2.4",
"react": "19.2.5",
"react-dom": "19.2.5",
"telegraf": "4.16.3",
"tonstakers-sdk": "0.0.19-development",
"zod": "4.3.6"
},
"devDependencies": {
"@playwright/test": "1.59.1",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"eslint": "9.39.4",
"eslint-config-next": "16.2.4",
"jsdom": "29.0.2",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.1.4",
"@opennextjs/cloudflare": "1.19.1",
"wrangler": "4.83.0",
"node-addon-api": "8.5.0",
"node-gyp": "11.2.0"
}
}