-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.49 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.49 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
{
"name": "demo-dapp-react-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "VITE_MANIFEST_URL=https://ton-connect.github.io/demo-dapp-with-react-ui/tonconnect-manifest.json vite --host --force",
"build": "tsc && GH_PAGES=true VITE_GH_PAGES=true VITE_MANIFEST_URL=https://ton-connect.github.io/demo-dapp-with-react-ui/tonconnect-manifest.json vite build && cp ./public/mockServiceWorkerDemo.js ./docs/mockServiceWorker.js",
"build:dev": "tsc && VITE_MANIFEST_URL=https://tonconnect-demo-dapp-with-react-ui.vercel.app/tonconnect-manifest.vercel.json vite build && cp ./public/mockServiceWorkerDemo.js ./docs/mockServiceWorker.js",
"preview": "VITE_MANIFEST_URL=https://ton-connect.github.io/demo-dapp-with-react-ui/tonconnect-manifest.json vite preview"
},
"dependencies": {
"@ton-community/assets-sdk": "0.0.5",
"@ton/core": "0.61.0",
"@ton/crypto": "3.3.0",
"@ton/ton": "15.3.1",
"@tonconnect/ui-react": "2.3.0-beta.4",
"buffer": "^6.0.3",
"crc-32": "^1.2.2",
"eruda": "^2.11.2",
"jose": "^5.2.4",
"msw": "2.10.4",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-json-view": "^1.21.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.13.4",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^3.0.0",
"sass": "^1.57.1",
"typescript": "^4.9.3",
"vite": "^4.0.0"
},
"msw": {
"workerDirectory": [
"public"
]
}
}