-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 3.08 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
105
{
"name": "Loopback-Template",
"version": "1.0.0",
"description": "LoopbackTemplate",
"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",
"posttest": "npm run lint",
"migrate": "node ./dist/migrate",
"prestart": "npm run clean && npm run build",
"start": "npm run prestart && 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": "^4.2.6",
"@loopback/authorization": "^0.5.11",
"@loopback/boot": "2.3.2",
"@loopback/context": "3.8.2",
"@loopback/core": "2.7.1",
"@loopback/openapi-v3": "3.4.2",
"@loopback/repository": "2.6.0",
"@loopback/rest": "5.1.0",
"@loopback/rest-explorer": "2.2.3",
"@loopback/security": "0.2.11",
"@loopback/service-proxy": "2.3.1",
"@types/jsonwebtoken": "8.5.0",
"@types/yaml": "1.9.7",
"bcryptjs": "2.4.3",
"casbin": "5.0.3",
"debug": "4.1.1",
"env2": "^2.2.2",
"express": "4.17.1",
"isemail": "3.2.0",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.15",
"loopback-connector-grpc": "1.3.0",
"loopback-connector-kv-redis": "3.0.3",
"loopback-connector-mongodb": "5.2.3",
"loopback-connector-postgresql": "^5.0.1",
"loopback-connector-rest": "3.6.0",
"yaml": "1.10.0"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@commitlint/config-lerna-scopes": "8.3.4",
"@commitlint/travis-cli": "8.3.5",
"@loopback/build": "5.4.2",
"@loopback/eslint-config": "8.0.0",
"@loopback/testlab": "3.1.6",
"@types/fs-extra": "9.0.1",
"@types/node": "12.12.43",
"@typescript-eslint/eslint-plugin": "3.1.0",
"@typescript-eslint/parser": "3.1.0",
"commitizen": "4.1.2",
"concurrently": "5.2.0",
"cz-conventional-changelog": "3.2.0",
"eslint": "7.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-eslint-plugin": "2.2.1",
"eslint-plugin-mocha": "7.0.1",
"fs-extra": "9.0.0",
"husky": "4.2.5",
"lerna": "3.22.0",
"mocha": "7.2.0",
"testcontainers": "2.9.0",
"source-map-support": "^0.5.16",
"typescript": "~3.7.5",
"@types/bcryptjs": "2.4.2",
"@types/debug": "4.1.5",
"@types/express": "4.17.6",
"@types/lodash": "4.14.155",
"@types/mocha": "7.0.2"
}
}