-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.49 KB
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
{
"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.1",
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.0",
"chai": "^5.2.0",
"config": "^3.3.12",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"koa": "^2.16.0",
"koa-bodyparser": "^4.4.1",
"koa-convert": "^2.0.0",
"koa-cors": "0.0.16",
"koa-logger": "^3.2.1",
"koa-passport": "^6.0.0",
"koa-router": "^13.0.1",
"koa-static": "^5.0.0",
"koa2-swagger-ui": "^5.11.0",
"mocha": "^11.1.0",
"mongoose": "^8.13.0",
"nyc": "^17.1.0",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.8.0",
"qrcode": "^1.5.4",
"speakeasy": "^2.0.0",
"supertest": "^7.1.0",
"swagger-ui-express": "^5.0.1",
"table": "^6.9.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0"
}
}