forked from adaliafoundation/influence-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.89 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.89 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "influence-server",
"version": "1.0.0",
"description": "API and caching layer for Influence data",
"main": "./src/api/server.js",
"scripts": {
"importAsteroids": "node ./bin/importAsteroids.js",
"importPlanets": "node ./bin/importPlanets.js",
"updatePositions": "node ./bin/updatePositions.js",
"ethereumEventRetriever": "node ./src/workers/eventRetriever.js --eventSource=ethereum",
"starknetEventRetriever": "node ./src/workers/eventRetriever.js --eventSource=starknet",
"starknetEventAuditor": "node ./src/workers/starknetEventAuditor.js",
"eventProcessor": "node ./src/workers/eventProcessor.js",
"elasticIndexer": "node ./src/workers/elasticsearch.js",
"nftCardBuilder": "node ./src/workers/nftCardBuilder.js",
"lint": "./node_modules/.bin/eslint ./src ./test",
"start": "node ./src/api/server.js",
"test": "NODE_ENV=test LOG_LEVEL=test ALLOW_CONFIG_MUTATIONS=true ./node_modules/.bin/mocha",
"watch": "./node_modules/.bin/nodemon ./src/api/server.js -e .js,.html,.json,.css",
"watch-all": "./node_modules/.bin/pm2 start ecosystem.config.js; pm2 monit ; ./node_modules/.bin/pm2 stop all",
"pm2-watch": "./node_modules/.bin/pm2 start ecosystem.config.js; pm2 logs",
"pm2-monitor": "./node_modules/.bin/pm2 start ecosystem.config.js; pm2 monit ; ./node_modules/.bin/pm2 stop all",
"pm2-restart-all": "./node_modules/.bin/pm2 restart all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adaliafoundation/influence-server.git"
},
"author": "Unstoppable Games, Inc.",
"license": "CC-BY-NC-4.0",
"bugs": {
"url": "https://github.com/adaliafoundation/influence-server/issues"
},
"homepage": "https://github.com/adaliafoundation/influence-server#readme",
"dependencies": {
"@aws-sdk/client-cloudfront": "3.651.1",
"@aws-sdk/client-s3": "3.651.1",
"@elastic/elasticsearch": "8.9.0",
"@influenceth/astro": "^0.2.5",
"@influenceth/sdk": "2.2.0-beta.1",
"@keyv/mongo": "^2.1.8",
"@keyv/redis": "2.5.7",
"@koa/cors": "5.0.0",
"@koa/router": "12.0.0",
"@sendgrid/client": "^8.1.3",
"@socket.io/redis-adapter": "^8.1.0",
"@socket.io/redis-emitter": "5.1.0",
"async": "^3.2.3",
"axios": "1.7.7",
"bcrypt": "^5.1.0",
"config": "^3.3.9",
"csv-parse": "^5.0.3",
"datauri": "^3.0.0",
"dotenv": "^8.2.0",
"exponential-backoff": "^3.1.0",
"ipfs-only-hash": "^4.0.0",
"joi": "^17.11.0",
"jsonwebtoken": "9.0.2",
"keyv": "4.5.2",
"koa": "^2.13.1",
"koa-bodyparser": "4.4.1",
"koa-compress": "^2.0.0",
"koa-conditional-get": "^3.0.0",
"koa-etag": "^4.0.0",
"koa-json": "^2.0.2",
"koa-jwt": "^4.0.1",
"koa-logger": "^3.2.1",
"koa-ratelimit": "^5.0.1",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"micro-memoize": "^4.0.10",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"mongoose": "8.5.1",
"numeral": "^2.0.6",
"probe-image-size": "^7.2.2",
"prompt": "^1.3.0",
"redis": "4.6.5",
"sharp": "^0.32.6",
"short-uuid": "^4.2.2",
"socket.io": "4.7.5",
"socket.io-client": "4.7.5",
"socketio-jwt": "^4.6.2",
"starknet": "^6.7.0",
"stripe": "^17.4.0",
"svg.js": "^2.7.1",
"svgdom": "^0.1.8",
"timer-node": "^5.0.5",
"web3": "^4.12.1",
"winston": "^3.8.1",
"yargs": "^17.6.2"
},
"devDependencies": {
"@babel/runtime": "^7.18.6",
"chai": "^4.3.4",
"eslint": "8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^9.0.0",
"mocha": "10.2.0",
"mongodb-memory-server": "9.4.1",
"nodemon": "3.1.7",
"pm2": "5.4.2",
"sinon": "^11.1.2",
"supertest": "6.3.3"
},
"engines": {
"node": "18.15.0"
},
"_moduleAliases": {
"@api": "./src/api",
"@common": "./src/common",
"@test": "./test"
}
}