Simple monitor for displaying MIDI status for digital pianos.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1.9 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@theoryofnekomata/piano-midi-monitor",
  3. "description": "Simple monitor for displaying MIDI status for digital pianos.",
  4. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com> (https://modal.sh)",
  5. "version": "0.1.0",
  6. "main": "public/electron.js",
  7. "private": true,
  8. "license": "MIT",
  9. "dependencies": {
  10. "@testing-library/jest-dom": "^4.2.4",
  11. "@testing-library/react": "^9.3.2",
  12. "@testing-library/user-event": "^7.1.2",
  13. "@theoryofnekomata/react-musical-keyboard": "1.0.4",
  14. "@types/jest": "^24.0.0",
  15. "@types/react": "^16.9.0",
  16. "@types/react-dom": "^16.9.0",
  17. "electron-is-dev": "^1.2.0",
  18. "midi": "^1.0.0",
  19. "react": "^16.13.1",
  20. "react-dom": "^16.13.1",
  21. "react-scripts": "3.4.1",
  22. "typescript": "~3.7.2"
  23. },
  24. "scripts": {
  25. "postinstall": "electron-builder install-app-deps",
  26. "start": "concurrently \"BROWSER=none react-scripts start\" \"wait-on http://localhost:3000 && electron .\"",
  27. "test": "react-scripts test",
  28. "compile": "tsc src/electron.ts --resolveJsonModule --esModuleInterop --outDir public/",
  29. "rebuild": "electron-rebuild -f -w midi",
  30. "prebuild": "react-scripts build",
  31. "build": "electron-builder"
  32. },
  33. "eslintConfig": {
  34. "extends": "react-app"
  35. },
  36. "browserslist": {
  37. "production": [
  38. ">0.2%",
  39. "not dead",
  40. "not op_mini all"
  41. ],
  42. "development": [
  43. "last 1 chrome version",
  44. "last 1 firefox version",
  45. "last 1 safari version"
  46. ]
  47. },
  48. "devDependencies": {
  49. "@types/node": "12",
  50. "concurrently": "^5.3.0",
  51. "electron": "^9.2.0",
  52. "electron-builder": "^22.8.0",
  53. "fast-check": "^2.1.0",
  54. "wait-on": "^5.1.0"
  55. },
  56. "build": {
  57. "files": [
  58. "./build/**/*",
  59. "./node_modules/**/*"
  60. ],
  61. "appId": "sh.modal.apps.pianomidimonitor",
  62. "productName": "Piano MIDI Monitor",
  63. "copyright": "Copyright © 2020 TheoryOfNekomata"
  64. },
  65. "homepage": "./"
  66. }