git.delta.rocks / unique-network / refs/commits / 2413863f3bef

difftreelog

source

js-packages/package.json2.3 KiBsourcehistory
1{2  "name": "unique-tests",3  "version": "1.0.0",4  "description": "Unique Chain Tests",5  "author": "",6  "license": "SEE LICENSE IN ../LICENSE",7  "homepage": "",8  "main": "",9  "private": true,10  "dependencies": {11    "@openzeppelin/contracts": "^4.9.2",12    "chai-as-promised": "^7.1.1",13    "chai-like": "^1.1.1",14    "csv-writer": "^1.6.0",15    "lossless-json": "^3.0.1",16    "solc": "^0.8.22",17    "typechain": "^8.3.2",18    "web3": "1.10.0"19  },20  "devDependencies": {21    "@types/chai": "^4.3.9",22    "@types/chai-as-promised": "^7.1.7",23    "@types/chai-like": "^1.1.2",24    "@types/chai-subset": "^1.3.4",25    "@types/mocha": "^10.0.3",26    "@types/node": "^20.8.10",27    "@typescript-eslint/eslint-plugin": "^6.10.0",28    "@typescript-eslint/parser": "^6.10.0",29    "@unique-nft/evm-abi": "workspace:*",30    "@unique-nft/opal-testnet-types": "workspace:*",31    "@unique-nft/playgrounds": "workspace:*",32    "@unique/test-utils": "workspace:*",33    "chai": "^4.3.10",34    "chai-subset": "^1.6.0",35    "eslint": "^8.53.0",36    "eslint-plugin-mocha": "^10.2.0",37    "ts-node": "^10.9.1",38    "typescript": "^5.2.2"39  },40  "mocha": {41    "timeout": 9999999,42    "require": [43      "ts-node/register"44    ]45  },46  "scripts": {47    "prepublish": "yarn tsc",48    "lint": "eslint --ext .ts .",49    "fix": "yarn lint --fix",50    "polkadot-types-fetch-metadata": "yarn node --no-warnings=ExperimentalWarning --loader ts-node/esm scripts/fetchMetadata.ts",51    "polkadot-types-from-defs": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./node_modules/.bin/polkadot-types-from-defs --endpoint scripts/metadata.json --input types/ --package .",52    "polkadot-types-from-chain": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./node_modules/.bin/polkadot-types-from-chain --endpoint scripts/metadata.json --output types/ --package .",53    "polkadot-types": "echo \"export default {}\" > types/lookup.ts && yarn polkadot-types-fetch-metadata && yarn polkadot-types-from-defs && yarn polkadot-types-from-defs && yarn polkadot-types-from-chain && rm types/registry.ts"54  },55  "resolutions": {56    "decode-uri-component": "^0.2.1"57  },58  "type": "module",59  "packageManager": "yarn@3.6.1",60  "workspaces": [61    "types",62    "evm-abi",63    "playgrounds",64    "scripts",65    "test-utils",66    "tests"67  ]68}