-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.85 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
89
90
91
92
93
94
95
96
97
{
"name": "@geoplateforme/geocodeur",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"api:start": "node api",
"lint": "xo",
"test": "c8 --all ava --no-worker-threads api indexes lib",
"test-lcov": "c8 --reporter=lcov --reporter=text --all ava --no-worker-threads api indexes lib",
"test-recette": "ava tests/recette",
"poi:build-from-bdtopo": "node indexes/poi/scripts/build-from-bdtopo",
"poi:build-index": "node indexes/poi/scripts/build-index",
"poi:publish-index": "node indexes/poi/scripts/publish-index",
"poi:download-index": "node indexes/poi/scripts/download-index",
"poi:start": "node indexes/poi/service",
"parcel:build-index": "node indexes/parcel/scripts/build-index",
"parcel:publish-index": "node indexes/parcel/scripts/publish-index",
"parcel:download-index": "node indexes/parcel/scripts/download-index",
"parcel:start": "node indexes/parcel/service",
"address:build-index": "node indexes/address/scripts/build-index",
"address:publish-index": "node indexes/address/scripts/publish-index",
"address:download-index": "node indexes/address/scripts/download-index",
"address:start": "node indexes/address/service"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.414.0",
"@aws-sdk/lib-storage": "^3.414.0",
"@etalab/decoupage-administratif": "^3.0.0",
"@mapbox/geojsonhint": "^3.2.0",
"@mapbox/tilebelt": "^1.0.2",
"@turf/bbox": "^6.5.0",
"@turf/bbox-polygon": "^6.5.0",
"@turf/boolean-intersects": "^6.5.0",
"@turf/centroid": "^6.5.0",
"@turf/circle": "^6.5.0",
"@turf/distance": "^6.5.0",
"@turf/truncate": "^6.5.0",
"addok-cluster": "^0.6.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"execa": "^8.0.1",
"express": "^4.18.2",
"fast-glob": "^3.3.1",
"flatbush": "^4.2.0",
"flexsearch": "^0.7.31",
"gdal-async": "^3.7.1",
"geobuf": "^3.0.2",
"got": "^13.0.0",
"http-errors": "^2.0.0",
"ioredis": "^5.3.2",
"js-yaml": "^4.1.0",
"lmdb": "^2.8.5",
"lodash-es": "^4.17.21",
"morgan": "^1.10.0",
"msgpackr": "^1.9.9",
"nanoid": "^4.0.2",
"natural": "^6.7.2",
"ndjson": "^2.0.0",
"nock": "^13.3.3",
"p-event": "^6.0.0",
"pbf": "^3.2.1",
"tar-fs": "^3.0.4"
},
"devDependencies": {
"ava": "^5.3.1",
"c8": "^8.0.1",
"mock-fs": "^5.2.0",
"supertest": "^6.3.3",
"xo": "^0.56.0"
},
"c8": {
"exclude": [
"**/__tests__/*.js",
"api/index.js",
"**/service/index.js",
"tests",
"coverage"
]
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"comma-dangle": [
"error",
"never"
],
"unicorn/prevent-abbreviations": "off",
"import/no-unassigned-import": "off",
"import/order": "off"
}
},
"engines": {
"node": ">= 18.12"
}
}