-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.05 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.05 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
{
"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.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": {
"axios": "^1.15.0",
"bcryptjs": "^2.4.3",
"biguint-format": "~1.0.0",
"body-parser": "^1.20.3",
"clamscan": "^2.4.0",
"csv": "~5.1.1",
"dotenv": "^16.0.1",
"express": "^4.21.2",
"flake-idgen": "~1.1.0",
"js-yaml": "^4.1.1",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.2.2",
"lodash": "^4.18.1",
"luxon": "^3.7.2",
"migrate-mongo": "^14.0.7",
"minio": "~7.0.8",
"mongodb": "^7.0.0",
"mongoose": "^9.3.2",
"multer": "^2.1.1",
"qs": "^6.14.1",
"sharp": "~0.33.5",
"stream-transform": "^2.1.3",
"swagger-ui-express": "^5.0.1",
"typesense": "^3.0.5",
"winston": "~2.4.4"
},
"devDependencies": {
"chai": "^4.3.10",
"mocha": "^11.0.0",
"sinon": "^17.0.1",
"supertest": "^7.0.0"
}
}