-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.39 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
80
81
{
"name": "@tapdata/moa",
"version": "1.0.1",
"description": "Open API",
"keywords": [
"API Server"
],
"bin": {
"moa": "bin/start.js"
},
"engines": {
"node": ">=8.9"
},
"scripts": {
"build:apidocs": "lb-apidocs",
"build": "lb-tsc es2017 --outDir dist",
"build:watch": "lb-tsc --watch",
"clean:dist": "lb-clean dist",
"clean:api": "lb-clean src/controllers/*.ts && lb-clean src/repositories/*.ts && lb-clean src/models/*.ts && lb-clean src/datasources/*.ts",
"clean": "lb-clean dist && npm run clean:api && lb-clean logs && lb-clean *.pid && lb-clean cache",
"lint:fix": "npm run tslint:fix && npm run prettier:fix",
"prettier:fix": "npm run prettier:cli -- --write",
"tslint": "lb-tslint",
"tslint:fix": "npm run tslint -- --fix",
"pretest": "npm run clean && npm run build",
"test": "echo \"no test specified.\"",
"test:dev": "lb-mocha --allow-console-logs dist/test/**/*.js",
"prestart": "npm run build",
"start": "node .",
"prepublishOnly": "npm run test",
"run": "node app.js"
},
"homepage": "https://github.com/tapd8/apig/tree/moa",
"repository": {
"type": "git",
"url": "https://github.com/tapd8/apig/tree/moa"
},
"author": "",
"license": "",
"dependencies": {
"@loopback/authentication": "^1.0.6",
"@loopback/boot": "^1.0.3",
"@loopback/context": "^1.0.1",
"@loopback/core": "^1.0.1",
"@loopback/openapi-v3": "^1.1.0",
"@loopback/repository": "^1.0.3",
"@loopback/rest": "^1.2.0",
"@loopback/service-proxy": "^1.0.1",
"@types/mongodb": "^3.1.22",
"change-case": "^3.0.2",
"conf": "^5.0.0",
"cross-spawn": "^6.0.5",
"download-file": "^0.1.5",
"excel4node": "^1.7.2",
"hashcode": "^1.0.3",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"log4js": "^3.0.6",
"loopback-connector-mongodb": "^5.0.0",
"make-dir": "^1.3.0",
"mem-fs": "^1.1.3",
"mem-fs-editor": "^5.1.0",
"moment": "^2.24.0",
"mongodb": "3.1.13",
"mongodb-schema": "^8.2.4",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"prompts": "^2.1.0",
"request": "^2.88.0",
"scan-fs": "0.0.5",
"through2": "^3.0.0"
},
"devDependencies": {
"@loopback/build": "^1.0.1",
"@loopback/testlab": "^1.0.1",
"@types/node": "^10.11.2",
"@types/passport": "^0.4.7",
"@types/passport-jwt": "^3.0.1",
"query-string": "^6.2.0"
}
}