-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 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
{
"name": "codever-api",
"version": "13.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"debug": "nodemon --inspect ./bin/www --watch src --watch docs/openapi/openapi.yaml",
"integration-tests": "NODE_ENV=test nyc mocha '**/*.spec.js' --exit",
"test": "jest --config ./jest.config.js"
},
"dependencies": {
"aws-sdk": "^2.1048.0",
"body-parser": "^1.20.1",
"cheerio": "^1.0.0-rc.10",
"cookie-parser": "^1.4.6",
"debug": "^4.3.3",
"escape-string-regexp": "^1.0.5",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"fs-extra": "^7.0.1",
"helmet": "^3.23.3",
"http-status-codes": "^1.4.0",
"keycloak-connect": "12.0.4",
"mongoose": "^5.13.15",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"multer-s3": "^2.10.0",
"node-cache": "^5.1.2",
"request": "latest",
"rotating-file-stream": "^1.4.6",
"serve-favicon": "^2.5.0",
"showdown": "^1.9.1",
"superagent": "^4.1.0",
"swagger-ui-express": "^4.3.0",
"uuid": "^9.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^8.5.0",
"jest": "^29.4.2",
"jsonwebtoken": "^9.0.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"supertest": "^3.4.2"
}
}