forked from Alien-Worlds/alienworlds-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.17 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
{
"name": "alienworlds-api",
"version": "1.0.0",
"description": "API for AlienWorlds data",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "yarn check-config && yarn clean && tsc && yarn copy-files && yarn abis",
"clean": "rm -rf ./dist",
"copy-files": "cp ./config.js ./dist/",
"abis": "mkdir -p ./dist/abis && node dist/fetch_abis.js ./dist/abis",
"check-config": "node ./scripts/check-config.js || (echo \"Create the config file by copying config.example.js to config.js\" && exit 1)"
},
"author": "",
"license": "ISC",
"dependencies": {
"@eosdacio/eosio-statereceiver": "^1.1.0",
"@eosrio/node-abieos": "^2.1.0-beta.0",
"@types/node": "^14.14.22",
"amqplib": "^0.6.0",
"atomicassets": "^1.2.2",
"axon": "^2.0.3",
"commander": "^7.0.0",
"crypto": "^1.0.1",
"eosjs": "^21.0.3",
"ethers": "^5.1.0",
"fastify": "^3.11.0",
"fastify-autoload": "^3.4.2",
"fastify-cors": "^5.2.0",
"fastify-mongodb": "^2.0.1",
"fastify-oas": "^3.0.8",
"file-exists": "^5.0.1",
"http": "^0.0.1-security",
"mongodb": "^3.6.3",
"node-fetch": "^2.6.1"
}
}