-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 2.28 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
{
"name": "movie_store",
"version": "0.0.1",
"description": "Sandbox",
"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": "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": "yarn run prettier:cli --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "yarn run eslint --fix",
"pretest": "yarn run rebuild",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"posttest": "yarn run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && yarn run posttest",
"docker:build": "docker build -t movie_store .",
"docker:run": "docker run -p 3000:3000 -d movie_store",
"premigrate": "yarn run build",
"migrate": "node ./dist/migrate",
"preopenapi-spec": "yarn run build",
"openapi-spec": "node ./dist/openapi-spec",
"prestart": "yarn run rebuild",
"start": "node -r source-map-support/register .",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"rebuild": "yarn run clean && yarn run build"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Confidence Okoghenun <[email protected]>",
"license": "",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/authentication": "^7.2.0",
"@loopback/authentication-jwt": "^0.8.1",
"@loopback/boot": "^3.3.0",
"@loopback/build": "^6.3.0",
"@loopback/core": "^2.15.0",
"@loopback/eslint-config": "^10.1.0",
"@loopback/repository": "^3.5.0",
"@loopback/rest": "^9.2.0",
"@loopback/rest-explorer": "^3.2.0",
"@loopback/service-proxy": "^3.1.0",
"@loopback/testlab": "^3.3.0",
"@types/node": "^10.17.55",
"@types/validator": "^13.1.3",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"loopback-connector-mongodb": "^5.2.3",
"source-map-support": "^0.5.19",
"tslib": "^2.0.0",
"typescript": "~4.2.3"
},
"devDependencies": {}
}