forked from sirgawain0x/edit-pixels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.6 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.6 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "pixels",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"lint": "eslint .",
"check:boundaries": "node scripts/check-feature-boundaries.mjs",
"check:deps-contracts": "node scripts/check-deps-contract-boundaries.mjs",
"check:legacy-lib-imports": "node scripts/check-legacy-lib-imports.mjs",
"check:deps-wrapper-health": "node scripts/check-deps-wrapper-health.mjs --fail-on-unused",
"report:deps-wrapper-health:json": "node scripts/check-deps-wrapper-health.mjs --json",
"check:edge-budgets": "node scripts/check-feature-edge-budgets.mjs",
"check:bundle-budgets": "node scripts/check-bundle-budgets.mjs",
"report:feature-edges": "node scripts/report-feature-edges.mjs",
"report:feature-edges:json": "node scripts/report-feature-edges.mjs --json",
"verify": "npm run check:boundaries && npm run check:deps-contracts && npm run check:legacy-lib-imports && npm run check:deps-wrapper-health && npm run check:edge-budgets && npm run lint && npm run build && npm run check:bundle-budgets",
"preview": "vite preview",
"routes": "tsr generate",
"test": "vitest",
"test:run": "vitest run",
"test:preview-sync": "vitest run src/features/preview/components/video-preview.sync.test.tsx",
"test:preview-sync:stress": "node scripts/preview-sync-stress.mjs --runs 20",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@mediabunny/ac3": "^1.34.3",
"@mediabunny/mp3-encoder": "^1.27.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-router": "^1.91.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fflate": "^0.8.2",
"gifuct-js": "^2.1.2",
"idb": "^8.0.3",
"lucide-react": "^0.468.0",
"mediabunny": "^1.34.3",
"react": "^19.2.0",
"react-colorful": "^5.6.1",
"react-dom": "^19.2.0",
"react-hook-form": "^7.66.0",
"react-hotkeys-hook": "^5.2.1",
"react-resizable-panels": "^3.0.6",
"sonner": "^2.0.7",
"soundtouchjs": "^0.2.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.1.12",
"zundo": "^2.3.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/router-cli": "^1.136.6",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.10.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^6.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"tailwindcss": "^4.1.17",
"typescript": "~5.9.3",
"typescript-eslint": "^8.19.1",
"vite": "^6.0.0",
"vitest": "^4.0.17"
}
}