package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "demo",
  3. "version": "1.0.1",
  4. "main": "index.js",
  5. "license": "MIT",
  6. "scripts": {
  7. "babel": "babel src --out-dir lib --copy-files --extensions \".ts\"",
  8. "build": "npm run babel",
  9. "start": "npm run babel && node -r dotenv/config lib/index.js",
  10. "cul": "npm run babel && node -r dotenv/config lib/culLine.js",
  11. "bit": "npm run babel && node -r dotenv/config lib/bitStable.js",
  12. "help": "babel help"
  13. },
  14. "dependencies": {
  15. "@layerzerolabs/solidity-examples": "^1.0.0",
  16. "dotenv": "^10.0.0",
  17. "ethers": "^6.8.1",
  18. "uuid": "^8.3.2"
  19. },
  20. "devDependencies": {
  21. "@babel/cli": "^7.14.8",
  22. "@babel/core": "^7.15.0",
  23. "@babel/plugin-proposal-class-properties": "^7.14.5",
  24. "@babel/plugin-proposal-decorators": "^7.16.0",
  25. "@babel/preset-env": "^7.15.0",
  26. "@babel/preset-typescript": "^7.15.0",
  27. "@types/js-yaml": "^4.0.5",
  28. "@types/node": "^18.16.1",
  29. "@types/uuid": "^8.3.1",
  30. "@typescript-eslint/eslint-plugin": "^6.7.5",
  31. "@typescript-eslint/parser": "^6.7.5",
  32. "babel-plugin-module-resolver": "^5.0.0",
  33. "eslint": "^8.7.0",
  34. "eslint-config-airbnb": "^19.0.4",
  35. "eslint-config-airbnb-typescript": "^17.1.0",
  36. "eslint-config-prettier": "^8.8.0",
  37. "eslint-import-resolver-alias": "^1.1.2",
  38. "eslint-plugin-prettier": "^5.0.0",
  39. "hardhat": "^2.19.1",
  40. "prettier": "^3.0.3",
  41. "typescript": "^4.3.5",
  42. "typescript-eslint": "^0.0.1-alpha.0"
  43. }
  44. }