forked from sourcefuse/loopback4-microservice-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.97 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
{
"name": "@sourceloop/audit-ms-example",
"version": "0.5.13",
"description": "An audit microservice example",
"keywords": [
"loopback-application",
"loopback"
],
"private": true,
"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 eslint && npm run prettier:check",
"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",
"pretest": "npm run rebuild",
"test": "echo 'No Tests'",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"docker:build": "docker build -t audit-example .",
"docker:run": "docker run -p 3000:3000 -d audit-example",
"premigrate": "npm run build",
"migrate": "node migration.js",
"preopenapi-spec": "npm run build",
"openapi-spec": "node ./dist/openapi-spec",
"rebuild": "npm run clean && npm run build",
"prestart": "npm run rebuild",
"start": "node -r source-map-support/register .",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"db:migrate": "./node_modules/db-migrate/bin/db-migrate up --config './migrations/database.json'",
"db:migrate:down": "./node_modules/db-migrate/bin/db-migrate down --config './migrations/database.json'",
"db:migrate:reset": "./node_modules/db-migrate/bin/db-migrate reset --config './migrations/database.json'"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Akshat Dubey <[email protected]>",
"license": "MIT",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/boot": "^5.0.5",
"@loopback/context": "^5.0.5",
"@loopback/core": "^4.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/audit-log": "^3.1.2",
"@sourceloop/audit-service": "^5.2.9",
"@sourceloop/core": "^7.3.1",
"ajv": "^8.11.0",
"ajv-errors": "^3.0.0",
"db-migrate": "^1.0.0-beta.18",
"db-migrate-pg": "^1.2.2",
"dotenv": "^16.0.3",
"dotenv-extended": "^2.9.0",
"loopback-connector-postgresql": "^5.5.0",
"loopback4-authentication": "^7.2.1",
"loopback4-authorization": "^5.0.9",
"loopback4-soft-delete": "^7.0.2",
"prom-client": "^14.0.1",
"tslib": "^2.0.0"
},
"devDependencies": {
"@loopback/build": "^9.0.5",
"@loopback/eslint-config": "^13.0.5",
"@loopback/testlab": "^5.0.5",
"@types/node": "^14.18.33",
"eslint": "^8.28.0",
"source-map-support": "^0.5.21",
"typescript": "~4.8.4"
}
}