-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.71 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
{
"name": "loopback4-example-serverless",
"version": "1.0.0",
"description": "LoopBack 4 Serverless Example",
"keywords": [
"loopback-example",
"loopback"
],
"main": "index.js",
"engines": {
"node": ">=8.9"
},
"scripts": {
"build": "lb-tsc",
"build:webpack": "webpack",
"build:watch": "lb-tsc es2017 --watch --outDir dist",
"clean": "lb-clean dist api-docs deploy",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha \"dist/__tests__\"",
"posttest": "npm run lint",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git"
},
"author": "",
"license": "MIT",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist"
],
"dependencies": {
"@loopback/context": "^2.1.1",
"@loopback/metadata": "^1.4.1",
"@types/aws-lambda": "^8.10.44",
"@types/express": "^4.17.2"
},
"devDependencies": {
"@loopback/build": "^3.1.1",
"@loopback/eslint-config": "^5.0.3",
"@loopback/testlab": "^1.10.3",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-eslint-plugin": "^2.2.1",
"eslint-plugin-mocha": "^6.3.0",
"mocha": "^7.0.1",
"source-map-support": "^0.5.16",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
}
}