-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.24 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "eagle-api",
"version": "1.0.0",
"author": "Mark Lisé",
"contributors": [
"Mark Lisé <mark@digitalspace.ca>"
],
"description": "Eagle API",
"keywords": [],
"license": "Apache 2.0",
"packageManager": "yarn@4.12.0",
"engines": {
"node": ">=24.0.0 <25.0.0",
"npm": "please-use-yarn",
"yarn": ">=4.0.0"
},
"resolutions": {
"axios": "^1.15.2",
"tar": "^7.5.19",
"serialize-javascript": "^7.0.5",
"brace-expansion": "^5.0.6",
"xml2js": "^0.6.2",
"qs": "^6.15.2",
"fast-xml-parser": "^5.7.3",
"ip-address": "^10.2.0",
"js-yaml": "^5.0.0"
},
"main": "app",
"typings": "app",
"scripts": {
"start": "node app",
"start-watch": "node --watch app.js",
"db:up": "docker compose up -d",
"db:down": "docker compose down",
"db:logs": "docker compose logs -f mongodb",
"db:restore": "docker compose exec -T mongodb mongorestore --archive --drop --db=epic",
"test": "mocha 'test/aggregators/**/*.test.js' 'test/controllers/**/*.test.js' 'test/helpers/**/*.test.js' 'test/models/**/*.test.js' --recursive --exit",
"test:watch": "mocha 'test/aggregators/**/*.test.js' 'test/controllers/**/*.test.js' 'test/helpers/**/*.test.js' 'test/models/**/*.test.js' --recursive --watch",
"test:smoke": "mocha 'test/smoke/**/*.test.js' --recursive --exit --timeout 30000",
"test:smoke:public": "mocha 'test/smoke/public-*.test.js' --recursive --exit --timeout 30000",
"migrate": "migrate-mongo up"
},
"dependencies": {
"agenda": "5.0.0",
"clamscan": "^2.4.0",
"csv": "~5.1.1",
"express": "^4.21.2",
"express-rate-limit": "^8.5.2",
"js-yaml": "^5.0.0",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.2.2",
"luxon": "^3.7.2",
"migrate-mongo": "^14.0.7",
"minio": "~7.0.8",
"mongodb": "^7.0.0",
"mongoose": "^9.3.2",
"multer": "^2.2.0",
"pdf-lib": "^1.17.1",
"qs": "^6.15.2",
"sharp": "~0.33.5",
"stream-transform": "^2.1.3",
"swagger-ui-express": "^5.0.1",
"typesense": "^3.0.5",
"winston": "^3.19.0"
},
"devDependencies": {
"chai": "^4.3.10",
"mocha": "^11.0.0",
"sinon": "^17.0.1",
"supertest": "^7.0.0"
},
"dependenciesMeta": {
"@scarf/scarf": {
"built": false
}
}
}