package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "beatdrop",
  3. "description": "A desktop app for downloading Beat Saber songs.",
  4. "author": "Nathaniel Johns (StarGazer1258)",
  5. "version": "2.1.7-beta",
  6. "private": false,
  7. "license": "CC-BY-NC-SA-4.0",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/StarGazer1258/BeatDrop.git"
  11. },
  12. "dependencies": {
  13. "adm-zip": "^0.4.13",
  14. "electron-is-dev": "^0.3.0",
  15. "electron-log": "^2.2.17",
  16. "electron-updater": "4.0.5",
  17. "get-image-colors": "^1.8.1",
  18. "md5": "^2.2.1",
  19. "node-sass": "^4.11.0",
  20. "original-fs": "^1.0.0",
  21. "react": "16.4.0",
  22. "react-contextmenu": "^2.10.0",
  23. "react-dom": "16.4.0",
  24. "react-linkify": "^0.2.2",
  25. "react-redux": "^6.0.0",
  26. "redux": "^4.0.1",
  27. "redux-persist": "^5.10.0",
  28. "redux-thunk": "^2.3.0",
  29. "remarkable": "^1.7.1",
  30. "rimraf": "^2.6.2",
  31. "sortablejs": "^1.8.0-rc1",
  32. "walker": "^1.0.7"
  33. },
  34. "devDependencies": {
  35. "concurrently": "3.5.1",
  36. "cross-env": "5.1.6",
  37. "electron": "3.0.10",
  38. "electron-builder": "20.38.1",
  39. "electron-devtools-installer": "^2.2.4",
  40. "prettier": "^1.4.4",
  41. "react-scripts": "2.1.2",
  42. "wait-on": "2.1.0"
  43. },
  44. "main": "public/electron.js",
  45. "homepage": "./",
  46. "scripts": {
  47. "test": "jest",
  48. "build": "react-scripts build && electron-builder --win",
  49. "publish": "react-scripts build && electron-builder --win -p always",
  50. "build-portable": "react-scripts build && electron-builder --win portable",
  51. "start": "concurrently \"cross-env BROWSER=none react-scripts start\" \"wait-on http://localhost:3000 && electron .\""
  52. },
  53. "build": {
  54. "generateUpdatesFilesForAllChannels": true,
  55. "nsis": {
  56. "allowToChangeInstallationDirectory": true,
  57. "artifactName": "BeatDrop ${version} Setup.${ext}",
  58. "oneClick": false,
  59. "perMachine": false,
  60. "shortcutName": "BeatDrop"
  61. },
  62. "directories": {
  63. "buildResources": "resources"
  64. },
  65. "win": {
  66. "publish": {
  67. "provider": "github"
  68. },
  69. "protocols": {
  70. "name": "BeatDrop Protocol",
  71. "schemes": [
  72. "beatdrop"
  73. ]
  74. }
  75. }
  76. },
  77. "browserslist": [
  78. "electron >= 3.0.10"
  79. ]
  80. }