-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.29 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
78
79
80
81
82
83
84
85
{
"name": "data-explorer-server",
"version": "1.0.0",
"private": true,
"description": "data-explorer-server",
"license": "MIT",
"keywords": [
"data-explorer-server",
"api",
"middleware",
"data",
"the-global-fund"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=22.13"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"lint": "yarn run eslint && yarn run prettier:check",
"lint:fix": "yarn run eslint:fix && yarn run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "yarn run prettier:cli -l",
"prettier:fix": "yarlin run prettier:cli --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "yarn run eslint --fix",
"prestart": "yarn run rebuild",
"start": "node -r source-map-support/register .",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"rebuild": "yarn run clean && yarn run build",
"dev": "nodemon server.js",
"deploy": "yarn prestart && pm2 start pm2.config.js --env production",
"docker": "yarn prestart && pm2-runtime start pm2.config.js --env production"
},
"nodemonConfig": {
"verbose": true,
"watch": [
"src/"
],
"ignore": [
"dist/*"
],
"ext": "ts",
"exec": "npm start"
},
"repository": {
"type": "git",
"url": "https://github.com/globalfund/data-explorer-server.git"
},
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/boot": "^7.0.10",
"@loopback/core": "^6.1.7",
"@loopback/repository": "^7.0.10",
"@loopback/rest": "^14.0.10",
"@loopback/rest-explorer": "^7.0.10",
"@loopback/service-proxy": "^7.0.10",
"@turf/center": "^7.2.0",
"@turf/helpers": "^7.2.0",
"@types/lodash": "^4.17.14",
"axios": "^1.7.9",
"lodash": "^4.17.21",
"map-transform": "^0.3.12",
"moment": "^2.30.1",
"nodemon": "^3.1.9",
"querystring": "^0.2.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@loopback/build": "^11.0.9",
"@loopback/eslint-config": "^15.0.5",
"@loopback/testlab": "^7.0.9",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"source-map-support": "^0.5.21",
"typescript": "~5.7.3"
}
}