-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.4 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
{
"name": "mascotafeliz",
"version": "0.0.1",
"description": "Proyecto Ciclo 4",
"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 && npm run prettier:check",
"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 mascotafeliz .",
"docker:run": "docker run -p 3000:3000 -d mascotafeliz",
"premigrate": "npm run build",
"migrate": "node ./dist/migrate",
"preopenapi-spec": "npm run build",
"openapi-spec": "node ./dist/openapi-spec",
"prestart": "npm run rebuild",
"start": "node -r source-map-support/register .",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"rebuild": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": ""
},
"author": "MariaJoseGa <majogafra@gmail.com>",
"license": "",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/authentication": "^8.0.0",
"@loopback/boot": "^3.4.4",
"@loopback/core": "^2.18.0",
"@loopback/repository": "^3.7.3",
"@loopback/rest": "^10.1.0",
"@loopback/rest-explorer": "^3.3.4",
"@loopback/security": "^0.6.0",
"@loopback/service-proxy": "^3.2.4",
"@types/node-fetch": "^3.0.3",
"crypto-js": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"loopback-connector-mongodb": "^5.6.0",
"node-fetch": "^2.6.5",
"parse-bearer-token": "^1.0.1",
"password-generator": "^2.3.2",
"tslib": "^2.0.0"
},
"devDependencies": {
"@loopback/build": "^7.0.2",
"@loopback/eslint-config": "^11.0.2",
"@loopback/testlab": "^3.4.4",
"@types/node": "^10.17.60",
"eslint": "^7.32.0",
"source-map-support": "^0.5.20",
"typescript": "~4.4.4"
}
}