-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.2 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
{
"name": "carte-scolaire",
"version": "0.0.0",
"repository": "https://github.com/livingdata-co/carte-scolaire",
"author": "Jérôme Desboeufs <[email protected]>",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "node server",
"scalingo-postbuild": "yarn download-prepared-data && yarn build",
"build": "next build",
"start": "NODE_ENV=production node server",
"download-sources": "node scripts/download-sources.js",
"download-prepared-data": "node scripts/download-prepared-data.js",
"build-colleges": "node scripts/build-colleges.js",
"build-data": "node scripts/build-data.js",
"build-index": "node scripts/build-index.js",
"build-tiles": "tippecanoe -Z8 -z12 -o carte-scolaire.mbtiles dist/secteurs.geojson dist/colleges.geojson",
"lint": "xo"
},
"dependencies": {
"@ban-team/adresses-util": "^0.9.0",
"@etalab/decoupage-administratif": "^2.3.1",
"@mapbox/mbtiles": "^0.12.1",
"@turf/turf": "^6.5.0",
"JSONStream": "^1.3.5",
"chalk": "^5.2.0",
"cors": "^2.8.5",
"d3-delaunay": "^6.0.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"flatbush": "^4.0.0",
"geobuf": "^3.0.2",
"got": "^12.5.3",
"http-errors": "^2.0.0",
"leven": "^4.0.0",
"lmdb": "^2.7.9",
"lodash-es": "^4.17.21",
"maplibre-gl": "^2.4.0",
"morgan": "^1.10.0",
"next": "^13.1.6",
"papaparse": "^5.3.2",
"pbf": "^3.2.1",
"prop-types": "^15.8.1",
"pumpify": "^2.0.1",
"react": "^18.2.0",
"react-autocomplete": "^1.8.1",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"sharp": "^0.31.3"
},
"devDependencies": {
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-nextjs": "^5.0.0",
"xo": "^0.53.1"
},
"xo": {
"extends": "xo-nextjs",
"semicolon": false,
"space": 2,
"rules": {
"comma-dangle": [
"error",
"never"
],
"react/no-unknown-property": [
"error",
{
"ignore": [
"global",
"jsx"
]
}
],
"unicorn/prevent-abbreviations": "off",
"import/no-named-default": "off"
}
},
"engines": {
"node": ">= 18.12 < 19"
}
}