-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.19 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
61
{
"name": "telegram-kit-embedded-wallet-react-boilerplate",
"private": false,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "echo \"Attention: front-end client and cloudflare function development use different tools. \n\nPlease be more specific: \n\npnpm run dev:vite \npnpm run dev:cf\"",
"dev:vite": "vite",
"dev:cf": "concurrently \"pnpm run dev:cf:functions\" \"pnpm run dev:cf:build\"",
"dev:cf:functions": "wrangler pages dev",
"dev:cf:build": "nodemon --watch 'src/**/*' -e ts,tsx --exec \"pnpm run build\"",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"postinstall": "(cp -n .env.example .env) || echo already exists"
},
"dependencies": {
"0xsequence": "2.1.0",
"@0xsequence/design-system": "^1.8.0",
"@0xsequence/indexer": "^2.1.0",
"@0xsequence/kit": "^4.4.4",
"@0xsequence/network": "^2.1.0",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.1.8",
"@mui/material": "^6.1.8",
"@tanstack/react-query": "^5.61.4",
"ethers": "6.13.4",
"memoizer-ts": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"three": "^0.170.0",
"viem": "^2.21.51",
"wagmi": "^2.13.0",
"wrangler": "^3.91.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241112.0",
"@eslint/js": "^9.15.0",
"@types/material-ui": "^0.21.17",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/three": "^0.170.0",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "5.1.0-rc-fb9a90fa48-20240614",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vite": "^5.4.8"
},
"packageManager": "[email protected]+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}