forked from ihiteshgupta/lb4-lambda-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.plain.json
75 lines (75 loc) · 2.18 KB
/
package.plain.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
{
"name": "lb-4-lambda-boilerplate",
"version": "1.0.0",
"description": "lb4 lambda boilerplate",
"keywords": [
"loopback-application",
"loopback"
],
"main": "index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf dist *.tsbuildinfo",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "eslint .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run clean && npm run build",
"test": "mocha dist/__tests__",
"posttest": "npm run lint",
"test:dev": "mocha dist/__tests__/**/*.js && npm run posttest",
"docker:build": "docker build -t lb-4-lambda-boilerplate .",
"docker:run": "docker run -p 3000:3000 -d lb-4-lambda-boilerplate",
"migrate": "node ./dist/migrate",
"start": "npm run build && node -r source-map-support/register .",
"prepare": "npm run build"
},
"repository": {
"type": "git"
},
"author": "",
"license": "",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/boot": "^2.0.0",
"@loopback/context": "^3.0.0",
"@loopback/core": "^2.0.0",
"@loopback/openapi-v3": "^3.0.0",
"@loopback/repository": "^2.0.0",
"@loopback/rest": "^3.0.0",
"@loopback/rest-explorer": "^2.0.0",
"tslib": "^1.10.0"
},
"devDependencies": {
"rimraf": "^3.0.2",
"source-map-support": "^0.5.16",
"@loopback/testlab": "^2.0.0",
"@types/mocha": "^7.0.2",
"@types/node": "^10.17.17",
"mocha": "^7.1.0",
"prettier": "^1.19.1",
"source-map-support": "^0.5.16",
"@typescript-eslint/parser": "^2.22.0",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@loopback/eslint-config": "^6.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-eslint-plugin": "^2.2.1",
"eslint-plugin-mocha": "^6.3.0",
"typescript": "~3.8.3"
}
}