package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "safe-cms",
  3. "version": "0.0.6",
  4. "description": "A simple to use content management system for the SAFE Network",
  5. "main": "main.js",
  6. "scripts": {
  7. "start": "electron .",
  8. "rebuild": "npm rebuild --runtime=electron --target=1.7.11 --disturl=https://atom.io/download/atom-shell --build-from-source",
  9. "postinstall": "npm run rebuild",
  10. "dist-windows": "build -w --x64",
  11. "dist-linux": "build -l --x64"
  12. },
  13. "build": {
  14. "appId": "net.safecms.app",
  15. "asar": "false",
  16. "win": {
  17. "target": "dir"
  18. },
  19. "linux": {
  20. "target": "dir"
  21. },
  22. "mac": {
  23. "target": "dir"
  24. }
  25. },
  26. "repository": "https://github.com/badcodeltd/safecms",
  27. "author": "Shane Armstrong <shane@badcode.co.uk",
  28. "license": "MIT",
  29. "dependencies": {
  30. "@maidsafe/safe-node-app": "0.7.0",
  31. "jquery": "^3.3.1",
  32. "csso": "^3.5.0",
  33. "uglify-js": "^3.3.10",
  34. "javascript-editor": "^1.0.3"
  35. },
  36. "devDependencies": {
  37. "electron": "1.7.11",
  38. "electron-packager": "^10.1.2",
  39. "electron-builder": "^20.0.8"
  40. }
  41. }