-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.08 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": "@loopback/example-express-composition",
"version": "1.3.3",
"description": "LoopBack 4 REST API on Express",
"keywords": [
"loopback-application",
"loopback",
"example",
"tutorial",
"express"
],
"main": "index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=8.9"
},
"scripts": {
"build:apidocs": "lb-apidocs",
"build": "lb-tsc es2017 --outDir dist",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint: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",
"eslint": "lb-eslint",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha \"dist/__tests__/**/*.js\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"migrate": "node ./dist/migrate",
"prestart": "npm run build",
"start": "node ."
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-next.git"
},
"publishConfig": {
"access": "public"
},
"author": "IBM Corp.",
"license": "MIT",
"dependencies": {
"@loopback/boot": "^1.2.10",
"@loopback/context": "^1.17.1",
"@loopback/core": "^1.7.3",
"@loopback/openapi-v3": "^1.5.1",
"@loopback/repository": "^1.5.8",
"@loopback/rest": "^1.13.1",
"@loopback/rest-explorer": "^1.1.25",
"@loopback/service-proxy": "^1.1.13",
"express": "^4.17.0",
"p-event": "^4.1.0"
},
"devDependencies": {
"@loopback/build": "^1.6.1",
"@loopback/testlab": "^1.3.0",
"@loopback/eslint-config": "^1.0.0",
"@types/express": "^4.16.1",
"@types/node": "^10.11.2",
"typescript": "~3.5.1",
"eslint": "^5.16.0",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint-plugin-eslint-plugin": "^2.1.0"
}
}