-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.69 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
{
"name": "editeur-bal",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"contributors": [
"Jérôme Desboeufs <jerome.desboeufs@data.gouv.fr>",
"Théophile Merlière <theophile.merliere@data.gouv.fr>",
"Guillaume Fay <guillaume.fay@beta.gouv.fr>",
"Fabien Tafforeau <fabien.tafforeau@beta.gouv.fr>"
],
"author": "Équipe Adresse <adresse@data.gouv.fr>",
"scripts": {
"dev": "next dev",
"start": "next start",
"lint": "eslint --ext .js,.ts,.tsx .",
"build": "yarn build-available-flags && next build",
"analyze": "ANALYZE=true next build",
"build-available-flags": "node scripts/build-available-flags",
"generate:openapi:api-bal": "openapi --input http://localhost:5000/api-json --output ./lib/openapi-api-bal",
"generate:openapi:signalement": "openapi --input http://localhost:5005/api-json --output ./lib/openapi-signalement",
"push-staging": "./scripts/push-staging.sh"
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"@ban-team/shared-data": "^1.3.0",
"@ban-team/validateur-bal": "^2.20.0",
"@mapbox/mapbox-gl-draw": "^1.4.3",
"@next/bundle-analyzer": "^13.5.3",
"@sentry/nextjs": "^8",
"@turf/bbox": "^6.5.0",
"@turf/buffer": "^6.5.0",
"@turf/center": "^6.5.0",
"@turf/centroid": "^6.5.0",
"@turf/difference": "6.5.0",
"@turf/length": "^6.5.0",
"@turf/line-slice": "^6.5.0",
"@turf/nearest-point-on-line": "^6.5.0",
"bson": "^6.8.0",
"chart.js": "^4.2.1",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "2.29.3",
"evergreen-ui": "^7.1.9",
"express": "4.18.2",
"fast-diff": "^1.3.0",
"fs-extra": "^11.1.1",
"fuse.js": "^6.6.2",
"get-stream": "^6.0.1",
"glamor": "^2.20.40",
"got": "11.8.6",
"immutable": "^4.3.0",
"lodash": "^4.17.21",
"mapbox-gl": "npm:empty-npm-package@1.0.0",
"maplibre-gl": "^3.3.1",
"next": "^13.5.6",
"randomcolor": "^0.6.2",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-joyride": "^2.9.3",
"react-map-gl": "^7.1.6",
"react-map-gl-draw": "1.0.4",
"react-range": "^1.8.14",
"sharp": "^0.32.6",
"use-debounce": "^9.0.4"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@types/react": "^18.2.23",
"babel-plugin-lodash": "^3.3.4",
"dotenv": "^16.0.3",
"eslint": "^7.32.0",
"eslint-config-next": "^13.5.3",
"eslint-config-prettier": "^9.0.0",
"openapi-typescript-codegen": "^0.25.0",
"prettier": "^3.1.0",
"typescript": "5.2.2"
},
"engines": {
"node": "22"
}
}