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

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "rjsvm",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "lib/Launcher.js",
  6. "scripts": {
  7. "clean": "rm -rf gui/main.js gui/index.html gateway/main.js build lib",
  8. "start": "npm run build && npm run launch",
  9. "launch": "node ./lib/Launcher.js",
  10. "tsc": "tsc",
  11. "build": "npm run clean && tsc",
  12. "build-all": "npm run build && npm run webpack-gui",
  13. "webpack-gui": "webpack --config webpack.gui.js --progress && cp build/gui/main.js gui",
  14. "webpack-gateway": "webpack --config webpack.gateway.js --progress && cp build/gateway/main.js gateway",
  15. "test": "npm run build && mocha --bail=true ./lib/test/*.js",
  16. "deploy": "node ./lib/Deploy.js"
  17. },
  18. "author": "",
  19. "license": "ISC",
  20. "dependencies": {
  21. "@types/chai": "^4.2.21",
  22. "@types/mocha": "^8.2.2",
  23. "@types/node": "^14.14.37",
  24. "chai": "^4.3.4",
  25. "node-fetch": "^2.6.1",
  26. "ripple-lib": "^1.9.3"
  27. },
  28. "devDependencies": {
  29. "base-64": "^1.0.0",
  30. "browserify-zlib": "^0.2.0",
  31. "crypto-browserify": "^3.12.0",
  32. "mocha": "^8.3.2",
  33. "process": "^0.11.10",
  34. "ts-loader": "^8.1.0",
  35. "typescript": "^3.9.5",
  36. "utf8": "^3.0.0",
  37. "webpack": "^5.30.0",
  38. "webpack-bundle-analyzer": "^4.4.0",
  39. "webpack-cli": "^4.6.0"
  40. }
  41. }