-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.1 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.1 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "api.zitat-service.de",
"version": "1.1.7",
"description": "The API provides functionality to retrieve quotes, along with related entries such as their respective authors and associated categories, from the website <a href=\"https://www.zitat-service.de\">zitat.service.de</a>. The content delivered by the API is available in five languages: English 🇺🇸, Español 🇪🇸, 日本語 🇯🇵, Українська 🇺🇦 and Deutsch 🇩🇪. While the content is multilingual, the API itself is provided only in English. You can find the open-source software project hosted on GitHub at <a href=\"https://github.com/muhme/quote_api\">github.com/muhme/quote_api</a>.",
"keywords": [
"loopback-application",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">= 20"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"lint": "npm run prettier:check",
"lint: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",
"pretest": "npm run rebuild",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"test:integration": "lb-mocha --allow-console-logs \"dist/__tests__/integration\"",
"test:end2end": "lb-mocha --allow-console-logs \"dist/__tests__/end2end\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"docker:build": "docker build -t api.zitat-service.de .",
"docker:run": "docker run -p 3000:3000 -d api.zitat-service.de",
"premigrate": "npm run build",
"migrate": "node ./dist/migrate",
"preopenapi-spec": "npm run build",
"openapi-spec": "node ./dist/openapi-spec",
"prestart": "npm run rebuild",
"start": "node -r source-map-support/register .",
"start-with-trace": "node --trace-warnings -r source-map-support/register .",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"rebuild": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": ""
},
"author": "muhme <github@heikol.de>",
"license": "",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/boot": "^8.0.10",
"@loopback/core": "^7.0.9",
"@loopback/logging": "^0.13.10",
"@loopback/repository": "^8.0.9",
"@loopback/rest": "^15.0.10",
"@loopback/rest-explorer": "^8.0.10",
"@loopback/service-proxy": "^8.0.9",
"dotenv": "^17.3.1",
"loopback-connector-mysql": "^8.0.6",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"winston": "^3.19.0"
},
"devDependencies": {
"@loopback/build": "^12.0.9",
"@loopback/testlab": "^8.0.9",
"@types/node": "^25.3.5",
"mocha": "^11.7.5",
"source-map-support": "^0.5.21",
"supertest": "^7.2.2",
"typescript": "^5.9.3",
"wait-on": "^9.0.4"
},
"overrides": {
"ajv": "8.18.0",
"diff": "8.0.3",
"minimatch": "10.2.4",
"undici": "^7.22.0",
"serialize-javascript": "^7.0.4"
}
}