-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "authentication",
"version": "1.0.0",
"description": "Authentication Server for Edge-ML",
"main": "server.js",
"scripts": {
"start": "node server.js",
"stats": "NODE_ENV=production node stats.js",
"start:docker": "NODE_ENV=production node server.js",
"test": "NODE_ENV=test nyc mocha --exit",
"createAdmin": "node createAdmin.js"
},
"author": "Edge-ML",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"chai": "^4.3.7",
"config": "^3.3.9",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^3.1.2",
"koa": "^2.14.1",
"koa-bodyparser": "^4.3.0",
"koa-convert": "^2.0.0",
"koa-cors": "0.0.16",
"koa-logger": "^3.2.1",
"koa-mongoose-erd-generator": "^0.0.7",
"koa-passport": "^6.0.0",
"koa-router": "^12.0.0",
"koa-static": "^5.0.0",
"koa2-swagger-ui": "^5.7.0",
"mocha": "^10.2.0",
"mongoose": "^6.9.2",
"nyc": "^15.1.0",
"passport-jwt": "^4.0.1",
"qrcode": "^1.5.1",
"speakeasy": "^2.0.0",
"supertest": "^6.3.3",
"table": "^6.8.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0"
}
}