forked from horeaporutiu/commercialPaperLoopback
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.27 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
68
69
70
71
72
73
74
{
"name": "@loopback/example-todo",
"version": "1.4.3",
"description": "Tutorial example on how to build an application with LoopBack 4.",
"main": "index.js",
"engines": {
"node": ">=8.9"
},
"scripts": {
"build:apidocs": "lb-apidocs",
"build": "lb-tsc es2017 --outDir dist",
"build:watch": "lb-tsc es2017 --outDir dist --watch",
"clean": "lb-clean *example-todo*.tgz dist package api-docs",
"lint": "npm run prettier:check && npm run tslint",
"lint:fix": "npm run tslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"tslint": "lb-tslint",
"tslint:fix": "npm run tslint -- --fix",
"pretest": "npm run build",
"test": "lb-mocha \"dist/__tests__/**/*.js\"",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"verify": "npm pack && tar xf loopback-todo*.tgz && tree package && npm run clean",
"migrate": "node ./dist/migrate",
"prestart": "npm run build",
"start": "node ."
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-next.git"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"dependencies": {
"@loopback/boot": "^1.0.12",
"@loopback/context": "^1.5.1",
"@loopback/core": "^1.1.6",
"@loopback/openapi-v3": "^1.2.1",
"@loopback/openapi-v3-types": "^1.0.6",
"@loopback/repository": "^1.1.5",
"@loopback/rest": "^1.5.5",
"@loopback/rest-explorer": "^1.1.8",
"@loopback/service-proxy": "^1.0.8",
"fabric-network": "^1.4.0",
"loopback-connector-rest": "^3.1.1"
},
"devDependencies": {
"@loopback/build": "^1.3.0",
"@loopback/http-caching-proxy": "^1.0.6",
"@loopback/testlab": "^1.0.6",
"@loopback/tslint-config": "^2.0.0",
"@types/lodash": "^4.14.109",
"@types/node": "^10.11.2",
"lodash": "^4.17.10",
"tslint": "^5.12.0",
"typescript": "^3.3.1"
},
"keywords": [
"loopback",
"LoopBack",
"example",
"tutorial",
"CRUD",
"models",
"todo"
],
"gitHead": "596a143d4a0aa1f078110aa6303ea933a40eead0",
"_resolved": "",
"_integrity": "",
"_from": "@loopback/example-todo@latest"
}