-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.04 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
{
"name": "casper-metrics-api",
"version": "0.2.4",
"description": "Public API for general Casper metrics",
"keywords": [
"casper", "cspr", "metrics"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16.1"
},
"scripts": {
"build": "lb-tsc",
"start": "pm2 start ecosystem.config.js",
"start:api": "pm2 start ecosystem.config.js --only 'metrics-api'",
"start:crawler": "pm2 start ecosystem.config.js --only 'crawler-worker'",
"pretest": "npm run rebuild",
"test": "lb-mocha --timeout 10000 --allow-console-logs \"dist/__tests__\"",
"premigrate": "npm run build",
"migrate": "node ./dist/migrate",
"migrate:erase": "npm run migrate -- --rebuild && redis-cli -n 0 flushdb",
"preopenapi-spec": "npm run build",
"openapi-spec": "node ./dist/openapi-spec",
"prestart": "npm run rebuild",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"rebuild": "npm run clean && npm run build",
"rebuild:prod": "npm run clean && npm run build:prod"
},
"repository": {
"type": "git",
"url": "https://github.com/a3mc/Casper-Metrics"
},
"author": "ART3MIS.CLOUD",
"license": "MIT",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/authentication": "^7.3.4",
"@loopback/authentication-jwt": "^0.9.4",
"@loopback/boot": "^3.4.0",
"@loopback/core": "^2.16.0",
"@loopback/repository": "^3.6.0",
"@loopback/rest": "^9.3.0",
"@loopback/security": "^0.5.4",
"@loopback/service-proxy": "^3.2.0",
"@open-rpc/client-js": "^1.6.3",
"@open-rpc/schema-utils-js": "^1.14.3",
"@open-rpc/server-js": "^1.8.4",
"async": "^3.2.0",
"await-timeout": "^1.1.1",
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"casper-js-sdk": "^2.10.2",
"coingecko-api": "^1.0.10",
"dotenv": "^10.0.0",
"dsa.js": "^2.7.6",
"isemail": "^3.2.0",
"jsonwebtoken": "^8.5.1",
"kv-redis": "^0.1.3",
"loopback-connector-mysql": "^5.4.4",
"loopback-connector-redis": "^3.0.0",
"loopback-datasource-juggler": "^4.26.0",
"moment": "^2.29.1",
"node-2fa": "^2.0.3",
"node-clone-js": "^1.0.2",
"nodemailer": "^6.7.2",
"tslib": "^2.0.0",
"winston": "^3.3.3",
"winston-telegram": "^2.3.5"
},
"devDependencies": {
"@loopback/build": "^6.4.0",
"@loopback/eslint-config": "^10.2.0",
"@loopback/testlab": "^3.4.0",
"@types/async": "^3.2.6",
"@types/await-timeout": "^0.3.1",
"@types/bcryptjs": "^2.4.2",
"@types/coingecko-api": "^1.0.4",
"@types/node": "^10.17.59",
"@types/nodemailer": "^6.4.4",
"@types/redis": "^2.8.31",
"eslint": "^7.25.0",
"source-map-support": "^0.5.19",
"typescript": "~4.2.4"
}
}