-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "tldraw-sync-cloudflare",
"private": true,
"version": "0.0.0",
"author": {
"name": "tldraw GB Ltd.",
"email": "[email protected]"
},
"homepage": "https://tldraw.dev",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "concurrently --kill-others --names client,worker --prefix-colors blue,red yarn:dev:client yarn:dev:worker",
"dev:client": "vite",
"dev:worker": "wrangler dev",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@cloudflare/types": "^6.29.0",
"@tldraw/sync": "3.6.0",
"@tldraw/sync-core": "3.6.0",
"@tldraw/tlschema": "3.6.0",
"cloudflare-workers-unfurl": "^0.0.7",
"itty-router": "^5.0.17",
"lodash.throttle": "^4.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tldraw": "3.6.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240909.0",
"@types/lodash.throttle": "^4",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"concurrently": "^9.0.1",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.13",
"typescript": "^5.0.2",
"vite": "^5.4.10",
"wrangler": "^3.64.0"
}
}