forked from sourcefuse/loopback4-microservice-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.18 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
{
"name": "@sourceloop/search-service",
"version": "0.7.10",
"description": "A microservice to search over provided models",
"keywords": [
"loopback-application",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "12 || 14 || 16 || 17"
},
"scripts": {
"build": "npm run clean && lb-tsc",
"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 build",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"coverage": "nyc npm run test",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"postinstall": "node migration.js",
"migration:create": "./node_modules/.bin/db-migrate create $1 --config './database.json' -m './migrations' --sql-file"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcefuse/loopback4-microservice-catalog.git",
"directory": "services/search-service"
},
"author": " <[email protected]>",
"license": "MIT",
"files": [
"README.md",
"dist",
"src",
"migration.js",
"migrations",
"database.json",
"!*/__tests__"
],
"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",
"dotenv": "^16.0.3",
"dotenv-extended": "^2.9.0",
"loopback-connector-postgresql": "^6.0.0",
"loopback4-authentication": "^7.2.1",
"loopback4-authorization": "^5.0.9",
"loopback4-soft-delete": "^7.0.2",
"tslib": "^2.0.0"
},
"peerDependencies": {
"db-migrate": "^1.0.0-beta.18",
"db-migrate-pg": "^1.2.2"
},
"devDependencies": {
"@loopback/build": "^9.0.5",
"@loopback/eslint-config": "^13.0.5",
"@loopback/testlab": "^5.0.5",
"@types/mocha": "^10.0.0",
"@types/node": "^14.18.33",
"@types/sinon": "^10.0.11",
"db-migrate": "^1.0.0-beta.18",
"eslint": "^8.28.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"sinon": "^13.0.2",
"source-map-support": "^0.5.21",
"typescript": "~4.8.4",
"widdershins": "^4.0.1"
},
"overrides": {
"widdershins": {
"swagger2openapi": "^7.0.8",
"markdown-it": "^12.3.2",
"yargs": "^17.4.1"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}