-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.12 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": "agro-market",
"version": "1.0.0",
"description": "platform of sales of fruits, vegetables and restaurants products",
"keywords": [
"loopback-application",
"loopback"
],
"main": "index.js",
"engines": {
"node": ">=8.9"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"dev": "concurrently \"npm run build:watch\" \"nodemon source-map-support/register .\" ",
"clean": "lb-clean dist *.tsbuildinfo",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js",
"docker:build": "docker build -t agro-market .",
"docker:run": "docker run -p 3000:3000 -d agro-market",
"migrate": "node ./dist/migrate",
"prestart": "npm run build",
"start": "node -r source-map-support/register .",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git"
},
"author": "",
"license": "",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/authentication": "^3.3.3",
"@loopback/authorization": "^0.4.10",
"@loopback/boot": "^1.7.4",
"@loopback/context": "^2.1.1",
"@loopback/core": "^1.12.4",
"@loopback/openapi-v3": "^2.0.0",
"@loopback/repository": "^1.19.1",
"@loopback/rest": "^2.0.0",
"@loopback/rest-explorer": "^1.4.10",
"@loopback/security": "^0.1.13",
"@loopback/service-proxy": "^1.3.17",
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^8.2.0",
"@types/lodash": "^4.14.149",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"isemail": "^3.2.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"loopback-connector-mongodb": "^4.2.0",
"loopback-connector-postgresql": "^3.8.1"
},
"devDependencies": {
"@loopback/build": "^3.1.1",
"@loopback/testlab": "^1.10.3",
"@types/jsonwebtoken": "^8.3.7",
"@types/node": "^10.17.14",
"concurrently": "^5.1.0",
"nodemon": "^2.0.2",
"source-map-support": "^0.5.16",
"typescript": "~3.7.5"
}
}