-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 3.17 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
98
99
100
101
102
{
"name": "@agencebio/cartobio-api",
"version": "2.24.0",
"description": "api for cartobio",
"main": "app.js",
"private": true,
"engines": {
"node": ">=20",
"npm": ">=8"
},
"devDependencies": {
"@agencebio/rosetta-cultures": "^2.1.0",
"@fastify/cors": "^9.0.1",
"@fastify/formbody": "^7.4.0",
"@fastify/multipart": "^8.2.0",
"@fastify/oauth2": "^7.0.0",
"@fastify/swagger": "^8.2.1",
"@fastify/swagger-ui": "^3.0.0",
"@sentry/node": "^8.0.0",
"@turf/area": "^6.5.0",
"@turf/bbox-polygon": "^6.5.0",
"@turf/boolean-intersects": "^6.5.0",
"@turf/boolean-point-in-polygon": "^6.5.0",
"@turf/centroid": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/union": "^6.5.0",
"@types/convict": "^6.1.4",
"@types/geojson": "^7946.0.10",
"@types/jest": "^29.5.11",
"@types/node": "^20.12.12",
"@types/pg": "^8.10.3",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"adm-zip": "^0.5.10",
"ajv-formats": "^3.0.1",
"cli-progress": "^3.12.0",
"convict": "^6.2.3",
"csv-parse": "^5.5.6",
"db-migrate": "^0.11.12",
"db-migrate-pg": "^1.2.2",
"deepmerge": "^4.2.2",
"dotenv": "^16.0.3",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"fast-jwt": "^4.0.0",
"fast-xml-parser": "^4.4.1",
"fastify": "^4.27.0",
"file-type": "^16.5.4",
"form-data": "^4.0.0",
"gdal-async": "^3.8.5",
"get-stream": "^6.0.1",
"got": "^11.8.6",
"jest": "^29.3.1",
"jsonstream-next": "^3.0.0",
"mnemonist": "^0.39.5",
"p-memoize": "^4.0.4",
"pg": "^8.7.3",
"pg-cursor": "^2.10.5",
"reproject": "^1.2.6",
"socks-proxy-agent": "^8.0.2",
"strip-bom-stream": "^4.0.0",
"supertest": "^7.0.0",
"through2": "^4.0.2",
"typescript": "^5.3.3",
"typescript-json-schema": "^0.64.0",
"validator": "^13.7.0",
"wkt": "^0.1.1"
},
"scripts": {
"load:communes-table": "node bin/load-communes-table.js",
"build:geo-data": "node bin/build-geo-data.js",
"prestart": "npm run build:geo-data && ./node_modules/.bin/db-migrate up",
"lint": "eslint --ignore-pattern 'migrations/*' .",
"test": "NODE_ENV=test node --trace-warnings --trace-uncaught ./node_modules/.bin/jest --collectCoverage --coverageReporters html --coverageReporters text-summary --coverageReporters lcovonly --detectOpenHandles",
"pretest": "npm run build:geo-data",
"posttest": "npm run lint && npm run test:types",
"test:types": "tsc",
"prewatch": "npm run build:geo-data && ./node_modules/.bin/db-migrate up",
"watch": "node --watch server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entrepreneur-interet-general/CartoBio-API.git"
},
"keywords": [
"cartobio",
"nodejs",
"api"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/AgenceBio/cartobio-api/issues"
},
"homepage": "https://github.com/AgenceBio/cartobio-api#readme",
"dependencies": {
"cli-progress": "^3.12.0"
}
}