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.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "rjsvm",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "lib/Launcher.js",
  6. "scripts": {
  7. "clean": "rm -rf gui/* gateway/main.js lib",
  8. "start": "npm run build && npm run deploy",
  9. "tsc": "tsc",
  10. "build": "npm run clean && npm run build-scripts && npm run build-gui && npm run copy-gui",
  11. "build-scripts": "tsc",
  12. "build-gui": "cd src/frontend && npm run build",
  13. "copy-gui": "cp src/frontend/build/index.html gui",
  14. "webpack-gateway": "webpack --config webpack.gateway.js --progress && cp build/gateway/main.js gateway",
  15. "deploy": "node ./lib/Deploy.js",
  16. "github": "cp gateway/index.html ~/caisar.github.io && cp gateway/main.js ~/caisar.github.io && cd ~/caisar.github.io && git checkout master && git add -A && git commit -m \"update\" --allow-empty && git push origin master --force && git checkout main && git add -A && git commit -m \"update\" --allow-empty && git push origin main --force"
  17. },
  18. "author": "",
  19. "license": "ISC",
  20. "dependencies": {
  21. "buffer": "^6.0.3",
  22. "chai": "^4.3.4",
  23. "node-fetch": "^2.6.1",
  24. "xrpio": "^0.2.1",
  25. "xrpl": "^2.7.0"
  26. },
  27. "devDependencies": {
  28. "@types/node": "^18.11.9",
  29. "base-64": "^1.0.0",
  30. "browserify-zlib": "^0.2.0",
  31. "buffer": "^6.0.3",
  32. "crypto-browserify": "^3.12.0",
  33. "mocha": "^8.3.2",
  34. "process": "^0.11.10",
  35. "ts-loader": "^8.1.0",
  36. "typescript": "^4.9.3",
  37. "url": "^0.11.0",
  38. "utf8": "^3.0.0",
  39. "webpack": "^5.88.2",
  40. "webpack-cli": "^5.1.4"
  41. }
  42. }