forked from sourcefuse/loopback4-microservice-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
136 lines (136 loc) · 4.27 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@sourceloop/authentication-service",
"version": "9.0.1",
"description": "Authentication microservice",
"keywords": [
"loopback-extension",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "12 || 14 || 16 || 17"
},
"scripts": {
"prebuild": "npm run clean",
"build": "lb-tsc && npm run openapi-spec && npm run apidocs",
"build:watch": "lb-tsc --watch",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"openapi-spec": "node ./dist/openapi-spec",
"apidocs": "./node_modules/.bin/widdershins --search false --language_tabs 'javascript:JavaScript:request' 'javascript--nodejs:Node.JS' --summary openapi.json -o openapi.md",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"coverage": "nyc npm run test && npx update-badge",
"posttest": "npm run lint",
"prepublishOnly": "npm run test",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"postinstall": "node migration.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcefuse/loopback4-microservice-catalog.git",
"directory": "services/authentication-service"
},
"author": "",
"license": "",
"files": [
"README.md",
"dist",
"src",
"migration.js",
"migrations",
"database.json",
"!*/__tests__"
],
"peerDependencies": {
"db-migrate": "^1.0.0-beta.18",
"db-migrate-pg": "^1.2.2"
},
"dependencies": {
"@loopback/boot": "^5.0.5",
"@loopback/context": "^5.0.5",
"@loopback/core": "^4.0.5",
"@loopback/openapi-v3": "^8.0.5",
"@loopback/repository": "^5.1.0",
"@loopback/rest": "^12.0.5",
"@loopback/rest-explorer": "^5.0.5",
"@loopback/service-proxy": "^5.0.5",
"@sourceloop/core": "^7.3.1",
"base-64": "^1.0.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"check-code-coverage": "^1.10.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"dotenv-extended": "^2.9.0",
"https-proxy-agent": "^5.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"loopback4-authentication": "^7.2.1",
"loopback4-authorization": "^5.0.9",
"loopback4-soft-delete": "^7.0.2",
"moment": "^2.29.3",
"moment-timezone": "^0.5.34",
"node-fetch": "^2.6.6",
"otplib": "^12.0.1",
"passport-apple": "^2.0.1",
"passport-azure-ad": "^4.3.4",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-instagram": "^1.0.0",
"qrcode": "^1.5.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@loopback/build": "^9.0.5",
"@loopback/eslint-config": "^13.0.5",
"@loopback/testlab": "^5.0.5",
"@types/base-64": "^1.0.0",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/i18n": "^0.13.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.182",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^14.18.33",
"@types/node-fetch": "^2.6.1",
"@types/passport-apple": "^1.1.1",
"@types/passport-azure-ad": "^4.3.1",
"@types/passport-facebook": "^2.1.11",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-instagram": "^1.0.2",
"@types/qrcode": "^1.4.2",
"@types/sinon": "^10.0.11",
"db-migrate": "^1.0.0-beta.18",
"db-migrate-pg": "^1.2.2",
"eslint": "^8.28.0",
"nyc": "^15.1.0",
"sinon": "^13.0.2",
"source-map-support": "^0.5.21",
"typescript": "~4.8.4",
"widdershins": "^4.0.1"
},
"overrides": {
"check-code-coverage": {
"lodash": "^4.17.21",
"got": "^11.8.5"
},
"widdershins": {
"swagger2openapi": "^7.0.8",
"markdown-it": "^12.3.2",
"yargs": "^17.4.1"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}