1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "name": "demo",
- "version": "1.0.1",
- "main": "index.js",
- "license": "MIT",
- "scripts": {
- "babel": "babel src --out-dir lib --copy-files --extensions \".ts\"",
- "build": "npm run babel",
- "start": "npm run babel && node -r dotenv/config lib/index.js",
- "cul": "npm run babel && node -r dotenv/config lib/culLine.js",
- "bit": "npm run babel && node -r dotenv/config lib/bitStable.js",
- "help": "babel help"
- },
- "dependencies": {
- "@layerzerolabs/solidity-examples": "^1.0.0",
- "dotenv": "^10.0.0",
- "ethers": "^6.8.1",
- "uuid": "^8.3.2"
- },
- "devDependencies": {
- "@babel/cli": "^7.14.8",
- "@babel/core": "^7.15.0",
- "@babel/plugin-proposal-class-properties": "^7.14.5",
- "@babel/plugin-proposal-decorators": "^7.16.0",
- "@babel/preset-env": "^7.15.0",
- "@babel/preset-typescript": "^7.15.0",
- "@types/js-yaml": "^4.0.5",
- "@types/node": "^18.16.1",
- "@types/uuid": "^8.3.1",
- "@typescript-eslint/eslint-plugin": "^6.7.5",
- "@typescript-eslint/parser": "^6.7.5",
- "babel-plugin-module-resolver": "^5.0.0",
- "eslint": "^8.7.0",
- "eslint-config-airbnb": "^19.0.4",
- "eslint-config-airbnb-typescript": "^17.1.0",
- "eslint-config-prettier": "^8.8.0",
- "eslint-import-resolver-alias": "^1.1.2",
- "eslint-plugin-prettier": "^5.0.0",
- "hardhat": "^2.19.1",
- "prettier": "^3.0.3",
- "typescript": "^4.3.5",
- "typescript-eslint": "^0.0.1-alpha.0"
- }
- }
|