-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.75 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
{
"name": "totem-price-aggregator-ms",
"version": "1.0.0",
"description": "Totem Price Aggregator Micro Service",
"main": "index.js",
"scripts": {
"server": "nodemon --watch src/ --verbose --exec ./node_modules/.bin/babel-node ./src/index.js --ext js --presets env",
"dev": "yarn run server",
"prod": "nodemon --exec ./node_modules/.bin/babel-node ./src/index.js --ignore ./ --ext js --presets env"
},
"babel": {
"plugins": [
"babel-plugin-transform-object-rest-spread"
],
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"keywords": [
"totem",
"chainlink"
],
"contributors": [
{
"name": "Chris DCosta",
"email": "chris.dcosta@totemaccounting.com"
},
{
"name": "Toufiqur R. Chowdhury",
"email": "htr.letun@gmail.com"
}
],
"license": "ISC",
"devDependencies": {
"express": "^4.17.1",
"nodemon": "^2.0.6"
},
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@polkadot/util-crypto": "^6.4.1",
"abort-controller": "^3.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bip39": "^3.0.2",
"blakejs": "^1.1.0",
"bs58": "^4.0.1",
"coingecko-api": "^1.0.10",
"etherscan-api": "^10.0.5",
"nano": "^9.0.3",
"node-fetch": "^2.6.1",
"node-localstorage": "^2.1.6",
"pbkdf2": "^3.0.17",
"rxjs": "^6.6.3",
"socket.io": "^3.0.4",
"uuid": "^8.3.2",
"uws": "^10.148.1",
"web3": "^1.3.4",
"web3-eth": "^1.3.4",
"web3-utils": "^1.3.0",
"xxhashjs": "^0.2.2"
}
}