-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
64 lines (64 loc) · 1.51 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
{
"name": "adamant-2fa",
"version": "2.0.0",
"description": "ADAMANT 2FA demo app to deliver one-time passwords (OTP) using blockchain",
"main": "server/server.js",
"keywords": [
"adm",
"adamant",
"blockchain",
"messenger",
"2fa",
"security",
"sms",
"crypto",
"cryptocurrency",
"encryption",
"2-factor",
"OTP",
"authentication"
],
"author": "ADAMANT Devs <[email protected]> (https://adamant.im)",
"license": "GPL-3.0",
"engines": {
"node": ">=16.15.0"
},
"scripts": {
"lint": "eslint .",
"start": "node .",
"posttest": "npm run lint",
"test": "jest helpers common/models --forceExit"
},
"dependencies": {
"adamant-console": "^2.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"eslint-plugin-jest": "^27.1.6",
"helmet": "^6.0.1",
"jsonminify": "^0.4.2",
"loopback": "^3.28.0",
"loopback-boot": "^2.28.0",
"loopback-component-explorer": "6.5.1",
"loopback-connector-postgresql": "6.0.0",
"serve-favicon": "^2.5.0",
"speakeasy": "^2.0.0",
"strong-error-handler": "^4.0.1"
},
"devDependencies": {
"axios": "^1.2.1",
"eslint": "^8.29.0",
"eslint-config-google": "^0.14.0",
"eslint-config-loopback": "^13.1.0",
"jest": "^29.3.1"
},
"overrides": {
"node-fetch": "2.6.7",
"ejs": "^3.1.7",
"underscore": "^1.12.1",
"@braintree/sanitize-url": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adamant-im/adamant-2fa.git"
}
}