-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.28 KB
/
package.json
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
87
88
{
"name": "landuseplanning-api",
"version": "1.12.0",
"author": "Mark Lisé",
"contributors": [
"Mark Lisé <[email protected]>",
"Steve Howard <[email protected]>",
"Alexander Wintschel <[email protected]>"
],
"description": "LUP API",
"keywords": [],
"license": "Apache-2.0",
"main": "app",
"engines": {
"node": "^10.0.0"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@turf/helpers": "^6.1.4",
"@turf/turf": "^5.1.6",
"axios": "^0.21.1",
"bcrypt-nodejs": "^0.0.3",
"biguint-format": "^1.0.0",
"body-parser": "^1.18.3",
"clamav.js": "^0.12.0",
"crypto": "^1.0.1",
"csv": "^5.1.1",
"dotenv": "^16.0.0",
"epsg": "^0.5.0",
"express": "^4.16.0",
"flake-idgen": "^1.1.0",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^1.3.0",
"keycloak-js": "^19.0.1",
"minio": "7.0.8",
"mongoose": "^5.7.7",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"proj4": "^2.5.0",
"qs": "^6.5.2",
"rand-token": "^1.0.1",
"reproject": "^1.2.2",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"start": "^5.1.0",
"stream": "^0.0.2",
"stream-transform": "^2.0.1",
"swagger-tools": "^0.10.4",
"tree-model": "^1.0.7",
"underscore": "^1.9.1",
"wicket": "^1.3.3",
"winston": "^3.6.0",
"yamljs": "0.2.9"
},
"overrides": {
"mongoose": {
"bson": "1.1.6",
"mongodb": {
"bson": "1.1.6"
}
}
},
"scripts": {
"preinstall": "npm install --package-lock-only --ignore-scripts && npx npm-force-resolutions",
"start": "nodemon app",
"lint": "eslint api/controllers/*.js api/helpers/**/*.js api/test/*.js api/test/**/*.js",
"test": "UPLOAD_DIRECTORY='./api/test/uploads/' jest --runInBand",
"tests-debug": "node --inspect node_modules/.bin/jest --runInBand",
"coverage": "jest --collectCoverageFrom=api/**.js --coverage api"
},
"devDependencies": {
"database-cleaner": "^1.2.0",
"eslint": "^7.0.0",
"factory-girl": "^5.0.2",
"jest": "^23.6.0",
"mongodb-memory-server": "^2.6.2",
"nock": "^10.0.1",
"nodemon": "^2.0.15",
"shelljs": "^0.8.3",
"supertest": "^3.3.0"
},
"resolutions": {
"validator": "13.7.0"
}
}