-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.32 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.32 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nextjs-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:https": "next dev --experimental-https",
"build": "next build",
"start": "next start",
"lint": "next lint",
"listener": "ts-node -r tsconfig-paths/register -r dotenv/config scripts/listener.ts",
"withdraw": "ts-node -r tsconfig-paths/register -r dotenv/config scripts/withdraw.ts",
"setPriceAndLimits": "ts-node -r tsconfig-paths/register -r dotenv/config scripts/setPriceAndLimits.ts",
"bp:bp": "blueprint",
"bp:start": "blueprint run",
"bp:build": "blueprint build",
"bp:deploy": "blueprint run deploy",
"bp:test": "jest --verbose",
"all:build": "blueprint build --all && next build"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.1.18",
"@sentry/nextjs": "^9.42.0",
"@sentry/node": "^9.42.0",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.4",
"@telegram-apps/sdk-react": "^3.3.6",
"@telegram-apps/telegram-ui": "^2.1.5",
"@ton-api/client": "^0.4.0",
"@ton-api/ton-adapter": "^0.4.1",
"@ton/blueprint": "^0.32.1",
"@ton/core": "^0.60.1",
"@ton/crypto": "^3.3.0",
"@ton/sandbox": "^0.29.0",
"@ton/ton": "^15.2.1",
"@tonconnect/ui-react": "^2.0.5",
"@types/swagger-ui-react": "^5.18.0",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"eruda": "^3.0.1",
"next": "14.2.4",
"next-intl": "^3.17.6",
"next-swagger-doc": "0.4.1",
"normalize.css": "^8.0.1",
"react": "^18",
"react-dom": "^18",
"swagger-ui-react": "5.12.0",
"tonweb": "^0.0.66",
"tree-sitter": "^0.21.1",
"ws": "^8.18.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@tact-lang/compiler": ">=1.6.6 <2.0.0",
"@ton-community/func-js": ">=0.9.1",
"@ton/test-utils": ">=0.6.0",
"@ton/tolk-js": ">=0.11.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"globals": "link:@types/@jest/globals",
"jest": "^29.7.0",
"postcss": "^8",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5"
}
}