-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
114 lines (114 loc) · 3.16 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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "adresse.data.gouv.fr",
"private": true,
"version": "1.0.0",
"description": "Le site officiel de l’Adresse",
"license": "MIT",
"scripts": {
"dev": "node server",
"build-next": "next build",
"build-available-flags": "node scripts/build-available-flags",
"build": "yarn build-available-flags && yarn build-next",
"start": "NODE_ENV=production node server",
"lint": "xo",
"heroku-postbuild": "yarn build",
"predev": "only-include-used-icons",
"prebuild": "only-include-used-icons",
"postinstall": "copy-dsfr-to-public"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.499.0",
"@babel/runtime": "^7.20.7",
"@ban-team/shared-data": "^1.2.0",
"@ban-team/validateur-bal": "^2.19.1",
"@codegouvfr/react-dsfr": "^0.41.0",
"@etalab/decoupage-administratif": "^4.0.0",
"@react-pdf/renderer": "^3.1.9",
"@socialgouv/matomo-next": "^1.6.1",
"@turf/bbox": "^6.5.0",
"@turf/bbox-polygon": "^6.5.0",
"@turf/boolean-contains": "^6.5.0",
"babel-plugin-lodash": "^3.3.4",
"blob-to-buffer": "^1.2.9",
"chardet": "^1.5.1",
"chart.js": "^3.9.1",
"compression": "^1.7.4",
"content-disposition": "^0.5.4",
"convert-svg-to-png": "0.5.0",
"copy-to-clipboard": "^3.3.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"filesize": "^10.0.12",
"fs-extra": "^11.1.0",
"geojson-vt": "^3.2.1",
"got": "^11.8.6",
"helmet": "^4.6.0",
"hoist-non-react-statics": "^3.3.2",
"iron-session": "^6.3.1",
"lodash": "^4.17.21",
"maplibre-gl": "^1.15.3",
"next": "^13.1.2",
"papaparse": "^5.3.2",
"prop-types": "^15.8.1",
"qrcode": "^1.5.4",
"react": "^18.2.0",
"react-autocomplete": "^1.7.2",
"react-chartjs-2": "^4.3.1",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-feather": "^2.0.10",
"react-js-pagination": "^3.0.3",
"react-map-gl": "^7.1.6",
"recharts": "^2.8.0",
"send": "^0.18.0",
"sharp": "^0.29.3",
"styled-components": "^6.0.7",
"swr": "^2.2.4",
"underscore.string": "^3.3.6",
"vt-pbf": "^3.1.3"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@next/bundle-analyzer": "^13.1.2",
"eslint": "^7.32.0",
"eslint-config-xo-nextjs": "^3.2.0",
"next-transpile-modules": "^10.0.0",
"xo": "^0.39.1"
},
"xo": {
"extends": "xo-nextjs",
"parser": "@babel/eslint-parser",
"semicolon": false,
"space": 2,
"envs": [
"browser",
"es2021"
],
"rules": {
"camelcase": "warn",
"unicorn/catch-error-name": "off",
"react/jsx-sort-props": "off",
"import/no-anonymous-default-export": "off",
"unicorn/prevent-abbreviations": "off",
"comma-dangle": "off",
"import/extensions": "off",
"node/prefer-global/process": "off",
"unicorn/no-array-for-each": "off",
"unicorn/prefer-switch": "off",
"react/no-unknown-property": [
2,
{
"ignore": [
"jsx",
"global"
]
}
]
}
},
"engines": {
"node": ">=16"
}
}