-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.73 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
57
58
59
{
"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",
"dev:mcp:token": "bash dev-only/mcp-token.sh"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1116.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"@mongodb-js/saslprep": "^1.5.0",
"body-parser": "^1.20.3",
"cheerio": "^1.0.0-rc.10",
"cookie-parser": "^1.4.7",
"debug": "^4.3.3",
"elliptic": "6.6.1",
"escape-string-regexp": "^1.0.5",
"eslint-plugin-jest": "^27.2.1",
"express": "^4.22.2",
"express-async-errors": "^3.1.1",
"form-data": "2.5.6",
"fs-extra": "^7.0.1",
"helmet": "^3.23.3",
"http-status-codes": "^1.4.0",
"keycloak-connect": "^24.0.5",
"mongoose": "^7.8.12",
"morgan": "^1.11.0",
"multer": "^1.4.4-lts.1",
"multer-s3": "^3.0.1",
"node-cache": "^5.1.2",
"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"
}
}