-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.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
{
"name": "captcha-microservice",
"version": "1.0.0",
"description": "REST based captcha generating microservice",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crossphoton/captcha-microservice.git"
},
"keywords": [
"captcha",
"nodejs",
"express",
"rest",
"microservice"
],
"author": "crossphoton",
"license": "ISC",
"bugs": {
"url": "https://github.com/crossphoton/captcha-microservice/issues"
},
"homepage": "https://github.com/crossphoton/captcha-microservice#readme",
"dependencies": {
"captchagen": "^1.2.0",
"compression": "^1.7.4",
"express": "^4.17.2",
"express-prometheus-middleware": "^1.2.0",
"express-winston": "^4.2.0",
"helmet": "^4.6.0",
"ioredis": "^4.28.2",
"jsonwebtoken": "^8.5.1",
"lightship": "^6.8.0",
"prom-client": "^14.0.1",
"rate-limiter-flexible": "^2.3.6",
"text-to-image": "^4.1.1",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}