-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.11 KB
/
package.json
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
{
"name": "ear-trainer",
"description": "Ear training web app with challenges for chords, intervals, progressions, and scales.",
"private": true,
"version": "0.6.0",
"type": "module",
"author": "Zach Balder",
"license": "UNLICENSED",
"scripts": {
"build": "tsc && vite build",
"dev": "vite --host 0.0.0.0",
"format": "prettier -w .prettierrc.mjs index.html *.{html,ts} src; pnpm exec stylelint --fix \"src/*.css\"",
"preview": "vite preview --host 0.0.0.0",
"preview:build": "pnpm build; pnpm preview",
"test": "vitest"
},
"devDependencies": {
"prettier": "^3.3.3",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.5.3",
"vite": "^5.4.1",
"vite-plugin-html": "^3.2.2",
"vite-plugin-sitemap": "^0.7.1",
"vite-plugin-static-copy": "^1.0.6",
"vitest": "^2.1.2"
},
"dependencies": {
"@shoelace-style/shoelace": "^2.17.1",
"@tonaljs/chord": "^6.1.0",
"@tonaljs/note": "^4.11.0",
"@tonaljs/progression": "^4.9.0",
"@tonaljs/scale": "^4.13.0",
"custom-piano-keys": "^0.0.15",
"tone": "^15.0.4"
}
}