forked from sourcefuse/loopback4-microservice-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.42 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
{
"name": "@sourceloop/video-conferencing-service",
"version": "1.3.3",
"description": "Microservice providing Video-Conferencing service",
"keywords": [
"loopback-extension",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "lb-tsc && npm run openapi-spec && npm run apidocs",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"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__\"",
"posttest": "npm run lint",
"test:dev": "lb-nyc lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"migrate": "node ./dist/migrate",
"prestart": "npm run build",
"prepublishOnly": "npm run test",
"postinstall": "node migration.js"
},
"repository": {
"type": "git"
},
"author": "Sourcefuse",
"license": "MIT",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"src",
"migration.js",
"migrations",
"database.json",
"!*/__tests__"
],
"peerDependencies": {
"db-migrate": "< 1.0.0 || ^1.0.0",
"db-migrate-pg": "^1.0.0"
},
"dependencies": {
"@loopback/boot": "^3.4.0",
"@loopback/context": "^3.16.0",
"@loopback/core": "^2.16.0",
"@loopback/metadata": "^3.3.0",
"@loopback/openapi-v3": "^5.3.0",
"@loopback/repository": "^3.6.0",
"@loopback/rest": "^9.3.0",
"@loopback/rest-explorer": "^3.3.0",
"@loopback/service-proxy": "^3.2.0",
"@sourceloop/core": "^3.1.2",
"@types/axios": "^0.14.0",
"@types/crypto-random-string": "^2.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/moment": "^2.13.0",
"@types/opentok": "^2.9.0",
"axios": "^0.21.1",
"crypto-random-string": "^3.2.0",
"dotenv": "^8.2.0",
"dotenv-extended": "^2.8.0",
"loopback-connector-postgresql": "^3.9.1",
"loopback4-authentication": "^4.6.0",
"loopback4-authorization": "^3.2.0",
"loopback4-soft-delete": "^3.2.2",
"moment": "^2.26.0",
"opentok": "^2.10.0",
"prom-client": "^13.1.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@loopback/build": "^6.4.0",
"@loopback/eslint-config": "^10.2.0",
"@loopback/testlab": "^3.4.0",
"@types/node": "^10.17.60",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"axios-mock-adapter": "^1.18.1",
"db-migrate": "^0.11.11",
"db-migrate-pg": "^1.2.2",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-plugin": "^3.0.2",
"eslint-plugin-mocha": "^8.1.0",
"source-map-support": "^0.5.19",
"typescript": "~4.2.4",
"widdershins": "^4.0.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}