-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.51 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.51 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
{
"name": "singing-experience",
"version": "1.0.0",
"description": "A browser-based singing practice app with real-time pitch detection and a DO RE MI singing game. Free, private, works offline.",
"type": "module",
"scripts": {
"dev": "vite --port 5555",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"build-then-preview": "npm run build && npm run preview",
"typecheck": "vue-tsc --noEmit",
"lint:fix": "oxlint --fix",
"tscheck": "node scripts/tscheck-with-timing.js",
"checks": "node scripts/checks.js",
"lint": "node scripts/lint-with-timing.js",
"format": "prettier --write ./src",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"guard": "npm run format && npm run checks",
"deploy": "gh-pages -d dist",
"validate:build": "npm run build && node scripts/validate-build.js"
},
"dependencies": {
"@primeuix/themes": "^2.0.3",
"@tailwindcss/vite": "^4.2.2",
"@vueuse/core": "^14.2.1",
"canvas-confetti": "^1.9.4",
"pinia": "^3.0.4",
"pitchy": "^4.1.0",
"primevue": "^4.5.5",
"tailwindcss": "^4.2.2",
"tone": "^15.1.22",
"vue": "^3.5.32",
"vue-i18n": "^11.3.2",
"vue-router": "^5.0.4"
},
"devDependencies": {
"@types/canvas-confetti": "^1.9.0",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/ui": "^4.1.4",
"@vue/test-utils": "^2.4.6",
"gh-pages": "^6.3.0",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxlint": "^1.60.0",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^6.0.3",
"unplugin-auto-import": "^21.0.0",
"unplugin-vue-components": "^32.0.0",
"vite": "^8.0.9",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-vue-devtools": "^8.1.1",
"vitest": "^4.1.4",
"vue-tsc": "^3.2.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kunukn/singing-experience.git"
},
"keywords": [
"singing",
"pitch-detection",
"vocal-pitch",
"do-re-mi",
"ear-training",
"music-education",
"microphone",
"note-detection",
"frequency-analyzer",
"voice-training",
"pwa",
"vue",
"web-audio"
],
"author": "kunukn",
"license": "0BSD",
"bugs": {
"url": "https://github.com/kunukn/singing-experience/issues"
},
"homepage": "https://github.com/kunukn/singing-experience#readme",
"lint-staged": {
"src/**/*.{ts,vue,css,js}": "prettier --write"
}
}