-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.03 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
{
"name": "lb-api",
"version": "0.0.1",
"description": "Loopback powered Backend for Frontend",
"keywords": [
"loopback-application",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "14 || 16 || 17 || 18"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run rebuild",
"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",
"docker:build": "docker build -t lb-bff .",
"docker:run": "docker run -p 3001:3001 -d lb-bff",
"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 .",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"rebuild": "npm run clean && npm run build",
"serve": "node ."
},
"repository": {
"type": "git",
"url": ""
},
"author": "Noé Samaille <noe.samaille@ibm.com>",
"license": "",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/boot": "^5.0.7",
"@loopback/core": "^4.0.7",
"@loopback/repository": "^5.1.2",
"@loopback/rest": "^12.0.7",
"@loopback/rest-explorer": "^5.0.7",
"@loopback/service-proxy": "^5.0.7",
"dotenv": "^16.0.3",
"loopback-connector-postgresql": "^5.5.2",
"loopback-connector-rest": "^3.7.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@loopback/build": "^9.0.7",
"@loopback/eslint-config": "^13.0.7",
"@loopback/testlab": "^5.0.7",
"@types/node": "^14.18.36",
"eslint": "^8.30.0",
"source-map-support": "^0.5.21",
"typescript": "~4.9.4"
}
}