-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.78 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.78 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
{
"name": "midee",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"postbuild": "node scripts/build-content.mjs && node scripts/build-og.mjs && node scripts/stamp-sitemap.mjs && node scripts/check-links.mjs && node scripts/upload-sourcemaps.mjs",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"format": "biome format --write src",
"test": "vitest run",
"test:watch": "vitest",
"check": "npm run typecheck && npm run lint && npm run test",
"icons": "node scripts/build-icons.mjs",
"preview:serp": "node scripts/preview-serp.mjs",
"bench": "VITE_ENABLE_BENCH=1 npx vite build && node scripts/bench.mjs",
"bench:update": "VITE_ENABLE_BENCH=1 npx vite build && node scripts/bench.mjs --update"
},
"dependencies": {
"@fontsource/instrument-serif": "^5.2.8",
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@t3-oss/env-core": "^0.13.11",
"@tonaljs/chord": "^6.1.2",
"@tonaljs/midi": "^4.10.2",
"@tonejs/midi": "^2.0.28",
"@tonejs/piano": "^0.2.1",
"@vercel/analytics": "^2.0.1",
"events": "^3.3.0",
"mediabunny": "^1.41.0",
"pixi-filters": "^6.0.1",
"pixi.js": "^8.4.0",
"posthog-js": "^1.369.3",
"solid-js": "^1.9.12",
"tone": "^14.7.77",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@posthog/cli": "^0.7.10",
"@resvg/resvg-js": "^2.6.2",
"@solidjs/testing-library": "^0.8.10",
"jsdom": "^25.0.1",
"marked": "^18.0.2",
"playwright": "^1.59.1",
"typescript": "^5.4.0",
"vite": "^8.0.0",
"vite-plugin-solid": "^2.11.12",
"vitest": "^4.1.0"
}
}