-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 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
{
"name": "image-tools",
"version": "0.1.0",
"license": "Unlicense",
"type": "module",
"scripts": {
"dev": "bun --hot src/index.html",
"start": "NODE_ENV=production bun src/index.html",
"build": "bun run build.ts",
"deploy": "bun run build && wrangler deploy",
"lint": "biome check .",
"lint:ci": "biome ci .",
"fmt": "biome format .",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "bunx playwright test",
"test:e2e:ui": "bunx playwright test --ui"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"bun-plugin-tailwind": "^0.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dompurify": "^3.3.1",
"gifuct-js": "^2.1.2",
"jspdf": "^4.0.0",
"lucide-react": "^0.563.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@happy-dom/global-registrator": "^20.4.0",
"@playwright/test": "^1.58.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "^1.3.8",
"@types/dompurify": "^3.2.0",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@types/web-app-manifest": "^1.0.9",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"globals": "^17.1.0",
"happy-dom": "^20.4.0",
"jsdom": "^27.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"vitest": "^4.0.18",
"wrangler": "^4.60.0"
}
}