forked from ncats/services
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
127 lines (127 loc) · 3.58 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@labshare/services",
"namespace": "services",
"main": "./",
"version": "4.10.3",
"description": "LabShare API service manager",
"contributors": "https://github.com/LabShare/services/graphs/contributors",
"repository": {
"type": "git",
"url": "https://github.com/LabShare/services.git"
},
"scripts": {
"build": "lb-tsc",
"commitmsg": "commitlint -e $GIT_PARAMS",
"pretest": "node -e 'process.exit(0)'",
"test": "jasmine JASMINE_CONFIG_PATH=./test/lib/jasmine.json",
"coverage": "nyc jasmine JASMINE_CONFIG_PATH=./test/lib/jasmine.json",
"snyk-protect": "snyk protect",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"bugs": {
"url": "https://github.com/LabShare/services/issues"
},
"license": "MIT",
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"reporter": [
"text",
"lcov"
],
"exclude": [
"test"
]
},
"dependencies": {
"@labshare/services-auth": "^3.3.0",
"@labshare/services-cache": "^1.19.0",
"@labshare/services-health": "^1.0.5",
"@labshare/services-logger": "^1.1.6",
"@labshare/services-notifications": "^1.0.3",
"@loopback/boot": "^1.5.12",
"@loopback/context": "^1.24.0",
"@loopback/core": "^1.11.0",
"@loopback/openapi-v3": "^1.10.2",
"@loopback/repository": "^1.15.5",
"@loopback/rest": "^1.24.0",
"@loopback/rest-explorer": "^1.4.5",
"@loopback/service-proxy": "^1.3.12",
"@types/jasmine": "^3.5.2",
"async": "^2.1.4",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"connect-redis": "^3.2.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"del": "^5.1.0",
"dotenv": "^6.0.0",
"elastic-apm-node": "^3.3.0",
"express": "^4.13.4",
"express-session": "^1.14.1",
"fancy-log": "latest",
"glob": "^7.0.3",
"gulp": "^4.0.2",
"helmet": "^3.3.0",
"lodash": "^4.17.20",
"loopback-connector-rest": "^3.6.0",
"memorystore": "^1.6.0",
"morgan": "^1.7.0",
"q": "^1.4.1",
"resolve-pkg": "^2.0.0",
"revalidator": "^0.3.1",
"snyk": "^1.87.0",
"socket.io": "^2.0.2",
"socket.io-client": "^2.0.2",
"socket.io-stream": "^0.9.1",
"stoppable": "^1.1.0",
"verror": "^1.10.0",
"yargs": "^15.1.0"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.1.2",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@loopback/build": "^2.1.0",
"@loopback/http-caching-proxy": "^1.2.2",
"@loopback/repository": "^1.8.0",
"@loopback/testlab": "^1.9.5",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^7.0.18",
"@types/async": "^3.0.3",
"@types/lodash": "^4.14.149",
"@types/node": "^10.17.5",
"@types/resolve-pkg": "^2.0.0",
"@types/supertest": "^2.0.8",
"@types/verror": "^1.10.3",
"execa": "^4.0.0",
"husky": "^0.14.3",
"is-jpg": "^2.0.0",
"jasmine": "^3.1.0",
"jasmine-core": "^3.1.0",
"lodash": "^4.17.20",
"nyc": "^15.0.0",
"portfinder": "^1.0.10",
"proxyquire": "^2.0.1",
"read-chunk": "^3.0.0",
"semantic-release": "^15.13.31",
"supertest": "^3.1.0",
"temp": "^0.8.3",
"travis-deploy-once": "^5.0.0",
"typescript": "~3.7.2"
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"snyk": false
}