This repository was archived by the owner on Dec 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.49 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.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
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
{
"name": "telegram-sequencejs-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 ./src",
"lint:fix": "eslint ./src --fix",
"preview": "vite preview",
"postinstall": "(cp -n .env.example .env) || echo already exists"
},
"dependencies": {
"0xsequence": "2.1.0",
"@0xsequence/auth": "^2.1.0",
"@0xsequence/design-system": "^1.8.0",
"@0xsequence/indexer": "^2.1.0",
"@0xsequence/network": "^2.1.0",
"@0xsequence/waas": "2.1.3",
"@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",
"@vanilla-extract/css": "^1.16.0",
"ethers": "6.13.4",
"fast-simplex-noise": "^4.0.0",
"memoizer-ts": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"three": "horizon-games/three.js#feature-dithered-hole",
"viem": "^2.21.54",
"wagmi": "^2.13.5",
"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",
"@vanilla-extract/vite-plugin": "^4.0.16",
"@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",
"pnpm": {
"patchedDependencies": {
"@types/[email protected]": "patches/@[email protected]"
}
}
}