-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.82 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
{
"name": "p2p-speedtest",
"private": true,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"typecheck": "wrangler types && react-router typegen && tsc -b",
"deploy": "bun run build && wrangler deploy",
"preview": "bun run build && vite preview",
"cf-typegen": "wrangler types",
"migration:schema": "schemas/upload.sh",
"generate:schema": "node scripts/build-schema.mjs",
"postinstall": "wrangler types && bun run generate:schema",
"predev": "bun run generate:schema",
"prebuild": "bun run generate:schema",
"pretest": "bun run generate:schema",
"pretypecheck": "bun run generate:schema",
"postdeploy": "bun run migration:schema",
"test": "vitest run"
},
"dependencies": {
"animejs": "^4.5.0",
"isbot": "^5.1.36",
"qrcode": "^1.5.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router": "^8",
"three": "^0.185.1",
"uuid": "^14.0.1"
},
"devDependencies": {
"@aries0d0f/fetch-worker": "^0.1.0",
"@cloudflare/vite-plugin": "^1.48.0",
"@cloudflare/vitest-pool-workers": "^0.19.0",
"@react-router/dev": "^8",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^26.1.2",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.185.1",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/runner": "^4.1.0",
"@vitest/snapshot": "^4.1.0",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"fake-indexeddb": "^6.2.5",
"js-yaml": "^5.2.2",
"jsdom": "^30.0.1",
"react-icons": "^5.7.0",
"sass": "^1.102.0",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"ua-parser-js": "^2.0.10",
"vite": "^8.0.3",
"vitest": "^4.1.0",
"wrangler": "^4.115.0"
}
}