-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.38 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.38 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
71
72
73
74
75
76
77
78
79
{
"name": "@loopback/example-rest-crud",
"version": "1.6.0",
"description": "HOA",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "12.x"
},
"author": "IBM Corp.",
"copyright.owner": "IBM Corp.",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean *example-rest-crud*.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 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-rest-crud*.tgz && tree package && npm run clean",
"migrate": "node ./dist/migrate",
"openapi-spec": "node ./dist/openapi-spec",
"prestart": "npm run build",
"start": "node ."
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-next.git",
"directory": "examples/rest-crud"
},
"dependencies": {
"@loopback/boot": "^2.4.1",
"@loopback/core": "^2.9.3",
"@loopback/repository": "^2.11.0",
"@loopback/rest": "^6.0.0",
"@loopback/rest-crud": "^0.8.11",
"@loopback/rest-explorer": "^2.2.8",
"@types/node-xlsx": "^0.15.0",
"csv-parser": "^2.3.3",
"form-data": "^3.0.0",
"loopback-connector-mongodb": "^5.3.0",
"loopback-connector-rest": "^3.7.0",
"multer": "^1.4.2",
"node-xlsx": "^0.15.0",
"tslib": "^2.0.0",
"xlsx": "^0.16.5"
},
"devDependencies": {
"@loopback/build": "^6.2.0",
"@loopback/eslint-config": "^9.0.0",
"@loopback/http-caching-proxy": "^2.1.11",
"@loopback/testlab": "^3.2.2",
"@types/lodash": "^4.14.158",
"@types/multer": "^1.4.3",
"@types/node": "^10.17.28",
"eslint": "^7.6.0",
"lodash": "^4.17.19",
"typescript": "~3.9.7"
},
"keywords": [
"loopback",
"LoopBack",
"example",
"CRUD",
"models",
"moa"
],
"gitHead": "1619bf0c29aa03853a7977212e60028664fca640"
}