-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.45 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
{
"name": "mitos",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"fmt": "prettier --write --ignore-path ./.gitignore .",
"fmt:check": "prettier --check --ignore-path ./.gitignore . ",
"preview": "vite preview",
"tsc": "tsc",
"lint": "eslint app",
"test": "bun test tests/",
"test:watch": "bun test --watch tests/",
"test:coverage": "bun test --coverage tests/",
"test:e2e": "playwright test",
"test:e2e:update": "playwright test --update-snapshots",
"ci": "bun run fmt:check && bun run tsc && bun run lint && bun run test"
},
"dependencies": {
"@ariakit/react": "^0.4.15",
"@codemirror/lang-javascript": "^6.2.3",
"@codemirror/language": "^6.11.0",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.4",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@oxide/design-system": "^2.5.0",
"@radix-ui/react-accordion": "^1.2.11",
"@react-hook/resize-observer": "^2.0.2",
"@uiw/react-codemirror": "^4.23.10",
"canvas-record": "^5.5.0",
"clsx": "^2.1.1",
"esbuild-wasm": "^0.25.9",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"file-saver": "^2.0.5",
"gifuct-js": "^2.1.2",
"jszip": "^3.10.1",
"media-codecs": "^2.0.2",
"motion": "^12.16.0",
"opentype.js": "^2.0.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"react": "^19.0.0",
"react-aria": "^3.38.1",
"react-dom": "^19.0.0",
"react-hotkeys-hook": "^4.6.1",
"react-stately": "^3.36.1",
"remeda": "^2.21.2",
"sonner": "^2.0.2",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.1",
"vite-tsconfig-paths": "^5.1.4"
},
"devDependencies": {
"@eslint/compat": "^1.2.8",
"@eslint/js": "^9.21.0",
"@playwright/test": "^1.60.0",
"@types/bun": "^1.2.19",
"@types/file-saver": "^2.0.7",
"@types/opentype.js": "^1.3.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.22.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"postcss": "^8",
"tailwindcss": "^3.4.17",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0"
}
}