12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "name": "network-tests",
- "version": "0.1.0",
- "license": "GPL-3.0-only",
- "scripts": {
- "build": "tsc --noEmit",
- "test": "./run-tests.sh",
- "run-test-scenario": "./run-test-scenario.sh",
- "node-ts-strict": "node -r ts-node/register --unhandled-rejections=strict",
- "lint": "eslint . --quiet --ext .ts",
- "checks": "tsc --noEmit --pretty && prettier ./ --check && yarn lint",
- "format": "prettier ./ --write "
- },
- "dependencies": {
- "@apollo/client": "^3.2.5",
- "@joystream/types": "link:../../types",
- "@polkadot/api": "4.2.1",
- "@polkadot/keyring": "^6.0.5",
- "@types/async-lock": "^1.1.2",
- "@types/bn.js": "^4.11.5",
- "@types/lowdb": "^1.0.9",
- "async-lock": "^1.2.0",
- "bn.js": "^4.11.8",
- "dotenv": "^8.2.0",
- "fs": "^0.0.1-security",
- "uuid": "^7.0.3"
- },
- "devDependencies": {
- "@polkadot/ts": "^0.3.62",
- "@types/chai": "^4.2.11",
- "@types/uuid": "^7.0.2",
- "chai": "^4.2.0",
- "prettier": "^2.2.1",
- "ts-node": "^8.8.1",
- "typescript": "^3.8.3"
- },
- "volta": {
- "extends": "../../package.json"
- }
- }
|