forked from d-bo/lb4-client-err
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.99 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
100
101
102
103
104
{
"name": "prj",
"version": "1.0.0",
"description": "prj",
"keywords": [
"loopback-application",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "npm start"
},
"scripts": {
"build": "lb-tsc --copy-resources",
"build:watch": "lb-tsc --watch",
"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 prj .",
"docker:run": "docker run -p 3000:3000 -d prj",
"migrate": "node ./dist/migrate",
"openapi-spec": "node ./dist/openapi-spec",
"prestart": "npm run build",
"start": "node -r source-map-support/register .",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache"
},
"repository": {
"type": "git"
},
"author": "",
"license": "",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/authentication": "^7.0.2",
"@loopback/authentication-passport": "^3.0.2",
"@loopback/boot": "^3.0.2",
"@loopback/context": "^3.12.0",
"@loopback/core": "^2.11.0",
"@loopback/openapi-v3": "^5.0.0",
"@loopback/repository": "^3.1.0",
"@loopback/rest": "^8.0.0",
"@loopback/rest-explorer": "^3.0.2",
"@loopback/service-proxy": "^3.0.2",
"@types/ejs": "^3.0.4",
"@types/formidable": "^1.0.31",
"@types/nodemailer": "^6.4.0",
"@types/passport-jwt": "^3.0.3",
"@types/pbkdf2": "^3.0.0",
"@types/socket.io": "^2.1.10",
"aws-sdk": "^2.713.0",
"axios": "^0.20.0",
"bcryptjs": "^2.4.3",
"ejs": "^3.1.3",
"email-validator": "^2.0.4",
"formidable": "^1.2.2",
"loopback-connector-mongodb": "^5.2.3",
"loopback-connector-rest": "^3.7.0",
"loopback-connector-soap": "^5.1.0",
"md5": "^2.3.0",
"moment": "^2.27.0",
"node-mailwizz": "^1.0.0",
"node-robokassa": "0.0.0",
"nodemailer": "^6.4.10",
"passport-jwt": "^4.0.0",
"pbkdf2": "^3.1.1",
"request": "^2.88.2",
"socket.io": "^2.3.0",
"ssl-root-cas": "^1.3.1",
"strong-soap": "^2.0.0",
"tslib": "^2.0.0",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@loopback/build": "^6.2.5",
"@loopback/eslint-config": "^10.0.1",
"@loopback/testlab": "^3.2.7",
"@types/node": "^10.17.37",
"eslint": "^7.10.0",
"mocha": "^8.1.3",
"source-map-support": "^0.5.19",
"typescript": "~4.0.3"
}
}