-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.2 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
{
"name": "yapgone",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "concurrently -n fe,worker -c blue,green \"vite\" \"wrangler dev worker/index.ts\"",
"dev:fe": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"worker:dev": "wrangler dev worker/index.ts",
"worker:deploy": "wrangler deploy worker/index.ts"
},
"dependencies": {
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/geist-mono": "^5.2.7",
"@jsquash/jpeg": "^1.6.0",
"@jsquash/png": "^3.1.1",
"@jsquash/webp": "^1.5.0",
"heic2any": "^0.0.4",
"qrcode": "^1.5.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241230.0",
"@testing-library/react": "^16.1.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"concurrently": "^9.2.1",
"happy-dom": "^16.6.0",
"typescript": "^5.7.0",
"vite": "~6.0.0",
"vitest": "~3.0.0",
"wrangler": "^3.100.0"
}
}