-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.76 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.76 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
{
"name": "syshub-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"private": true,
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "jest",
"test:watch": "jest --watchAll",
"doc": "jsdoc ./controllers/. ./middlewares/.",
"format": "prettier --write .",
"lint": "eslint ."
},
"keywords": [],
"author": "ted@syscoin.org",
"license": "ISC",
"dependencies": {
"@jest/globals": "^26.6.2",
"@syscoin/syscoin-js": "^4.2.0",
"axios": "^1.7.9",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"content-security-policy": "^0.3.4",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"express": "^4.17.1",
"express-force-ssl": "^0.3.2",
"express-formidable": "^1.2.0",
"firebase": "^11.3.0",
"firebase-admin": "^13.1.0",
"firebase-functions": "^6.3.1",
"geoip-country": "^4.0.52",
"greenlock-express": "^4.0.3",
"helmet": "^4.1.1",
"i18n-iso-countries": "^6.4.0",
"joi": "^18.0.2",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^3.1.2",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"nodemon": "^3.1.9",
"numeral": "^2.0.6",
"pem": "^1.14.4",
"pretty-ms": "^7.0.1",
"serve-favicon": "^2.5.0",
"speakeasy": "^2.0.0",
"supertest": "^6.0.1",
"sweetalert2": "^10.10.0",
"winston": "^3.19.0"
},
"devDependencies": {
"firebase-tools": "^13.30.0",
"jest": "^27.5.1",
"jest-extended": "^4.0.2",
"jsdoc": "^4.0.4",
"prettier": "^3.5.0"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended"
]
}
}