-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.05 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.05 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "api",
"version": "2.45.1",
"description": "MAPS Micronutrient Support Tool API",
"keywords": [
"loopback-application",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.16"
},
"scripts": {
"jsonschema": "node createModelJSONSchema.js",
"prebuild": "npm run jsonschema",
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"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 --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run rebuild",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"docker:build": "docker build -t api .",
"docker:run": "docker run -p 3000:3000 -d api",
"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 -r source-map-support/register .",
"start:watch": "tsc-watch --target es2017 --outDir ./dist --onSuccess \"node .\"",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"postinstall": "patch-package",
"create-patch": "patch-package js-to-json-logic",
"discover": "set -a && source .env && set +a && echo $DB_HOST && lb4 discover --schema=$DB_SCHEMA"
},
"repository": {
"type": "git"
},
"author": "Bean, Andrew K. <andan@bsg.ac.uk>",
"license": "",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/boot": "^6.0.0",
"@loopback/core": "^5.0.0",
"@loopback/repository": "^6.0.0",
"@loopback/rest": "^13.0.0",
"@loopback/rest-crud": "^0.16.0",
"@loopback/rest-explorer": "^6.0.0",
"@loopback/service-proxy": "^6.0.0",
"@sentry/node": "^7.64.0",
"bull": "^4.1.0",
"dotenv": "^8.2.0",
"dotenv-extended": "^2.9.0",
"excel-formula-parser": "^1.1.0",
"geojson": "^0.5.0",
"js-to-json-logic": "^0.1.3",
"json-logic-js": "^2.0.2",
"loopback-connector-postgresql": "^5.2.1",
"loopback-connector-rest": "^3.7.0",
"sharp": "^0.29.2",
"ts-json-schema-generator": "^0.95.0",
"tslib": "^2.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@loopback/build": "^10.0.0",
"@loopback/eslint-config": "^14.0.0",
"@loopback/testlab": "^6.0.0",
"@types/bull": "^3.15.5",
"@types/json-logic-js": "^2.0.1",
"@types/node": "^14.18.47",
"@types/sharp": "^0.29.3",
"@types/uuid": "^8.3.1",
"eslint": "^8.40.0",
"patch-package": "^7.0.0",
"source-map-support": "^0.5.21",
"tsc-watch": "^4.4.0",
"typescript": "~4.9.5"
}
}