Files
redstone-node/package.json
Cezary Haliniarz bb1b50b378 feat: add Avalanche YieldYak fetcher (#108)
* feat: add multicall
2022-07-21 16:44:11 +02:00

95 lines
3.0 KiB
JSON

{
"name": "redstone-node",
"version": "0.4.38",
"description": "A data provider module that fetches price information and serves it to end users.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"build:contracts": "rm -rf dist && node ./tools/contracts/build.js && yarn cp",
"cp": "copyfiles -u 1 ./src/contracts/**/*.json dist",
"start": "Mts-node index.ts",
"start:prod": "node dist/index.js",
"start:dev": "ts-node index.ts",
"start:sample": "yarn start:dev > tmp.out",
"test": "yarn build:contracts && NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"test:ci": "yarn build:contracts && NODE_ENV=test jest --ci --reporters='default' --reporters='./tools/GithubActionsReporter'",
"prepublishOnly": "yarn test && yarn build",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"docker:build": "docker build -f Dockerfile.public -t redstone-node-public ."
},
"license": "MIT",
"author": "Redstone Team <dev@redstone.finance>",
"contributors": [
"Jakub Wojciechowski <jakub@redstone.finance>",
"Alex Suvorov <alex@redstone.finance>",
"Peter Pedziwiatr <peter@redstone.finance>"
],
"dependencies": {
"@bundlr-network/client": "^0.7.4",
"@metamask/eth-sig-util": "^4.0.1",
"@types/express": "^4.17.13",
"arlocal": "^1.1.30",
"arql-ops": "^1.0.0",
"arweave": "^1.10.23",
"arweave-multihost": "^0.1.0",
"axios": "^0.21.1",
"ccxt": "^1.85.3",
"coingecko-api": "^1.0.10",
"consola": "^2.15.3",
"deep-sort-object": "^1.0.2",
"dotenv": "^16.0.1",
"ecb-euro-exchange-rates": "^2.0.0",
"ethereumjs-util": "^7.0.10",
"ethers": "^5.6.9",
"express": "^4.17.1",
"git-last-commit": "^1.0.1",
"isomorphic-fetch": "^3.0.0",
"jsonpath": "^1.1.1",
"lodash": "^4.17.21",
"moment": "^2.29.2",
"prompts": "^2.4.2",
"redstone-api": "^0.4.6",
"redstone-smartweave": "^0.4.40",
"sort-deep-object-arrays": "^1.1.2",
"streamr-client": "^5.5.0",
"uuid": "^8.3.2",
"yahoo-finance": "^0.3.7"
},
"devDependencies": {
"@types/exchange-rates-api": "^1.0.0",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^26.0.23",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.31",
"@types/prompts": "^2.0.14",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.0",
"ar-gql": "^0.0.6",
"copyfiles": "^2.4.1",
"dateformat": "^4.5.1",
"download": "^8.0.0",
"esbuild": "^0.14.34",
"ethereum-waffle": "^3.4.4",
"jest": "^27.0.4",
"jest-mock-extended": "^1.0.16",
"msw": "^0.42.1",
"open": "^8.0.4",
"plotly": "^1.0.6",
"prettier": "^2.6.2",
"prompts": "^2.4.2",
"replace-in-file": "^6.3.2",
"supertest": "^6.2.3",
"ts-jest": "^27.0.3",
"ts-node": "10.0.0",
"typed-binary-json": "^1.17.4",
"typescript": "^4.3.2"
},
"files": [
"dist/**/*"
]
}