-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.89 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
{
"name": "newlbapp",
"version": "1.0.0",
"description": "newlbapp",
"keywords": [
"loopback-application",
"loopback"
],
"main": "index.js",
"engines": {
"node": ">=10"
},
"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 clean && 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",
"docker:build": "docker build -t newlbapp .",
"docker:run": "docker run -p 3000:3000 -d newlbapp",
"migrate": "node ./dist/migrate",
"prestart": "npm run build",
"start": "node -r source-map-support/register .",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache"
},
"repository": {
"type": "git"
},
"author": "",
"license": "",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/authentication": "^4.2.3",
"@loopback/authentication-jwt": "^0.2.1",
"@loopback/authorization": "^0.5.8",
"@loopback/boot": "^2.1.2",
"@loopback/context": "^3.6.0",
"@loopback/core": "^2.4.2",
"@loopback/openapi-v3": "^3.3.0",
"@loopback/repository": "^2.3.0",
"@loopback/rest": "^3.3.2",
"@loopback/rest-explorer": "^2.1.2",
"@loopback/service-proxy": "^2.1.2",
"loopback-connector-mysql": "^5.4.3",
"tslib": "^1.10.0"
},
"devDependencies": {
"@loopback/build": "^5.3.0",
"source-map-support": "^0.5.19",
"@loopback/testlab": "^3.1.2",
"@types/node": "^10.17.21",
"typescript": "~3.8.3"
}
}