-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.14 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
{
"name": "infinity",
"version": "0.0.1",
"description": "infinity",
"keywords": [
"loopback-application",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.16"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run rebuild",
"posttest": "npm run lint",
"docker:build": "docker build -t infinity .",
"docker:run": "docker run -p 3000:3000 -d infinity",
"premigrate": "npm run build",
"migrate": "node ./dist/migrate",
"preopenapi-spec": "npm run build",
"openapi-spec": "node ./dist/openapi-spec",
"prestart": "npm run rebuild",
"start": "pm2 start ecosystem.config.js --env production",
"stop": "pm2 stop ecosystem.config.js --env production",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"rebuild": "npm run clean && npm run build",
"dev": "npm run clean && npm run build && nodemon -r source-map-support/register ."
},
"repository": {
"type": "git",
"url": ""
},
"author": "woueziou <[email protected]>",
"license": "",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/authentication": "^7.3.1",
"@loopback/authentication-jwt": "^0.9.1",
"@loopback/authorization": "^0.9.1",
"@loopback/boot": "^3.4.2",
"@loopback/core": "^2.16.2",
"@loopback/repository": "^3.7.1",
"@loopback/rest": "^10.0.0",
"@loopback/rest-explorer": "^3.3.2",
"@loopback/service-proxy": "^3.2.2",
"loopback-connector-mongodb": "^5.5.0",
"loopback-connector-postgresql": "^5.4.0",
"moment": "^2.29.1",
"ms": "^2.1.3",
"pm2": "^5.1.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@loopback/build": "^7.0.0",
"source-map-support": "^0.5.19",
"@loopback/testlab": "^3.4.2",
"@types/node": "^10.17.60",
"@loopback/eslint-config": "^11.0.0",
"eslint": "^7.29.0",
"typescript": "~4.3.4"
}
}