-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 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
{
"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",
"test": "jest --config jest.config.js",
"test:integration": "jest --config jest.config.integration.js",
"integration:test": "npm run test:integration",
"integration-tests": "npm run test:integration",
"test:all": "npm run test && npm run test:integration"
},
"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",
"eslint-plugin-jest": "^27.2.1",
"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": "16.1.1",
"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": {
"@faker-js/faker": "^7.6.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^8.5.0",
"jest": "^29.4.2",
"jest-extended": "^3.2.3",
"jsonwebtoken": "^9.0.2",
"mocha": "^9.1.3",
"nodemon": "^3.1.4",
"nyc": "^15.1.0",
"supertest": "^3.4.2"
}
}