forked from Shuytrnm/redstone-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "redstone-node",
"version": "0.4.24",
"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",
"start": "MODE=PROD ts-node index.ts",
"start:prod": "node dist/index.js",
"start:dev": "MODE=LOCAL ts-node index.ts",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"test:ci": "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 <[email protected]>",
"contributors": [
"Jakub Wojciechowski <[email protected]>",
"Alex Suvorov <[email protected]>",
"Peter Pedziwiatr <[email protected]>"
],
"dependencies": {
"@types/express": "^4.17.13",
"arql-ops": "^1.0.0",
"arweave": "^1.10.16",
"arweave-multihost": "^0.1.0",
"axios": "^0.21.1",
"ccxt": "^1.60.81",
"coinbase": "^2.0.8",
"coingecko-api": "^1.0.10",
"consola": "^2.15.3",
"deep-sort-object": "^1.0.2",
"ecb-euro-exchange-rates": "^2.0.0",
"eth-sig-util": "^3.0.1",
"ethereumjs-util": "^7.0.10",
"ethers": "^5.3.0",
"express": "^4.17.1",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"promise-timeout": "^1.3.0",
"redstone-api": "^0.4.6",
"redstone-smartweave": "^0.3.10-alpha.1",
"sort-deep-object-arrays": "^1.1.2",
"streamr-client": "^5.5.0",
"uuid": "^8.3.2",
"yahoo-finance": "^0.3.7",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/coinbase": "^2.0.5",
"@types/consola": "^2.2.5",
"@types/exchange-rates-api": "^1.0.0",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.31",
"@types/promise-timeout": "^1.3.0",
"@types/uuid": "^8.3.0",
"@types/yargs": "^16.0.0",
"ar-gql": "^0.0.6",
"dateformat": "^4.5.1",
"download": "^8.0.0",
"jest": "^27.0.4",
"jest-mock-extended": "^1.0.16",
"open": "^8.0.4",
"plotly": "^1.0.6",
"ts-jest": "^27.0.3",
"ts-node": "10.0.0",
"typed-binary-json": "^1.17.4",
"typescript": "^4.3.2"
},
"files": [
"dist/**/*"
]
}