-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.4 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
75
76
77
{
"name": "@loopback/example-todo",
"description": "Tutorial example on how to build an application with LoopBack 4",
"version": "5.0.1",
"keywords": [
"loopback",
"LoopBack",
"example",
"tutorial",
"CRUD",
"models",
"todo"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "IBM Corp.",
"copyright.owner": "IBM Corp.",
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback-next.git",
"directory": "examples/todo"
},
"engines": {
"node": "12 || 14 || 16 || 17"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean *example-todo*.tgz dist *.tsbuildinfo package",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run rebuild",
"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",
"premigrate": "npm run build ",
"migrate": "node ./dist/migrate",
"preopenapi-spec": "npm run build",
"openapi-spec": "node ./dist/openapi-spec",
"rebuild": "npm run clean && npm run build",
"prestart": "npm run rebuild",
"start": "node ."
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@loopback/boot": "^4.0.1",
"@loopback/core": "^3.0.1",
"@loopback/repository": "^4.0.1",
"@loopback/rest": "^11.0.1",
"@loopback/rest-explorer": "^4.0.1",
"@loopback/service-proxy": "^4.0.1",
"loopback-connector-rest": "^4.0.1",
"morgan": "^1.10.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@loopback/build": "^8.0.1",
"@loopback/eslint-config": "^12.0.1",
"@loopback/http-caching-proxy": "^3.0.1",
"@loopback/testlab": "^4.0.1",
"@types/lodash": "^4.14.178",
"@types/morgan": "^1.9.3",
"@types/node": "^10.17.60",
"eslint": "^8.6.0",
"lodash": "^4.17.21",
"typescript": "~4.5.4"
},
"gitHead": "4a8886403cd9cb3ae529cb69712f077623cba2c2"
}