-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·99 lines (99 loc) · 3.01 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "gpp-backend",
"version": "0.7.4",
"description": "Global Passport Project Backend",
"keywords": [
"loopback-application",
"loopback"
],
"main": "index.js",
"engines": {
"node": ">=8.9"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist *.tsbuildinfo",
"lint": "npm run prettier:check && npm run eslint",
"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 clean && npm run build",
"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 api .",
"docker:run": "docker run -p 3000:3000 -d api",
"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/boot": "^1.7.4",
"@loopback/cli": "^1.30.0",
"@loopback/context": "^2.1.0",
"@loopback/core": "^2.11.0",
"@loopback/cron": "^0.3.7",
"@loopback/openapi-spec-builder": "^1.3.1",
"@loopback/openapi-v3": "^1.11.0",
"@loopback/repository": "^1.17.0",
"@loopback/rest": "^8.0.0",
"@loopback/rest-explorer": "^1.4.10",
"@loopback/service-proxy": "^1.3.14",
"@sendgrid/mail": "^7.4.2",
"@types/bcryptjs": "^2.4.2",
"@types/multer": "^1.4.4",
"bcryptjs": "^2.4.3",
"compress-images": "^1.9.8",
"dotenv": "^8.2.0",
"export-to-excel": "^0.2.1",
"image-size": "^0.9.3",
"image-to-base64": "^2.1.1",
"ipfs-http-client": "^48.2.1",
"isemail": "^3.2.0",
"js-base64": "^3.5.2",
"jsonwebtoken": "^8.5.1",
"keypair-lib": "^1.0.7",
"loopback-connector-openapi": "^6.2.0",
"loopback-connector-postgresql": "^5.2.0",
"multer": "^1.4.2",
"nano-ipfs-store": "^0.1.3",
"salted-md5": "^4.0.2",
"uuid": "^8.3.2",
"xlsx-import": "^2.3.4",
"zenroom": "^1.1.5-c780a69"
},
"devDependencies": {
"@loopback/build": "^3.1.1",
"@loopback/eslint-config": "^5.0.3",
"@loopback/testlab": "^1.10.3",
"@types/node": "^10.17.43",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-eslint-plugin": "^2.3.0",
"eslint-plugin-mocha": "^6.3.0",
"source-map-support": "^0.5.19",
"typescript": "~3.7.4"
}
}