-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.17 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.17 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
78
79
80
81
82
83
84
85
86
{
"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": ">=22.0.0 <23.0.0",
"npm": "please-use-yarn",
"yarn": ">=4.0.0"
},
"main": "app",
"typings": "app",
"scripts": {
"start": "node app",
"start-watch": "node --watch app.js",
"test": "mocha 'test/**/*.test.js' --recursive --exit",
"test:watch": "mocha 'test/**/*.test.js' --recursive --watch"
},
"dependencies": {
"@turf/helpers": "~6.1.4",
"@turf/turf": "~5.1.6",
"@types/node-cron": "~2.0.3",
"axios": "^1.8.2",
"bcryptjs": "^2.4.3",
"biguint-format": "~1.0.0",
"body-parser": "^1.20.3",
"clamscan": "^2.4.0",
"crypto": "~1.0.1",
"csv": "~5.1.1",
"db-migrate": "~0.11.4",
"db-migrate-mongodb": "~1.5.0",
"dotenv": "^16.0.1",
"epsg": "~0.5.0",
"express": "^4.21.2",
"fast-csv": "^4.3.6",
"flake-idgen": "~1.1.0",
"jsonwebtoken": "^9.0.2",
"jszip": "^3.10.1",
"jwks-rsa": "^3.2.2",
"minio": "~7.0.8",
"moment": "^2.30.1",
"mongodb": "~4.17.2",
"mongoose": "~6.13.6",
"nconf": "^0.12.1",
"path": "~0.12.7",
"proj4": "~2.5.0",
"qs": "^6.14.1",
"reproject": "~1.2.2",
"sharp": "~0.33.5",
"stream": "~0.0.2",
"stream-transform": "^2.1.3",
"swagger-tools": "~0.10.4",
"tree-model": "~1.0.7",
"underscore": "^1.13.7",
"wicket": "~1.3.3",
"winston": "~2.4.4",
"yamljs": "0.2.9"
},
"devDependencies": {
"chai": "^4.3.10",
"mocha": "^10.2.0",
"sinon": "^17.0.1"
},
"resolutions": {
"bson": "^4.7.2",
"form-data": "^4.0.4",
"mixme": "^0.5.10",
"swagger-tools/body-parser": "^1.20.3",
"swagger-tools/multer": "^2.0.2",
"swagger-tools/qs": "^6.14.1",
"swagger-tools/path-to-regexp": "^3.3.0",
"z-schema/validator": "^13.15.22",
"fast-xml-parser": "^5.3.6",
"tar": "^7.5.8",
"db-migrate-mongodb/mongodb": "^3.7.4",
"minimatch": "^10.2.3",
"qs": "^6.14.1",
"serialize-javascript": "^7.0.3"
}
}