forked from BaseAdresseNationale/adresse.data.gouv.fr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.42 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
{
"name": "adresse.data.gouv.fr",
"private": true,
"version": "1.0.0",
"description": "Site officiel de la Base Adresse Nationale",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "node server",
"build": "next build",
"start": "NODE_ENV=production node server",
"lint": "xo",
"heroku-postbuild": "next build"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.8.3",
"@etalab/bal": "^0.20.4",
"@etalab/project-legal": "^0.3.3",
"@turf/bbox": "^6.0.1",
"@turf/helpers": "^6.1.4",
"blob-to-buffer": "^1.2.8",
"chart.js": "^2.9.2",
"compression": "^1.7.4",
"content-disposition": "^0.5.3",
"express": "^4.17.1",
"fuzzyset.js": "^0.0.8",
"hoist-non-react-statics": "^3.3.0",
"isomorphic-unfetch": "^3.0.0",
"jschardet-french": "^0.0.1",
"lodash": "^4.17.15",
"mapbox-gl": "^1.6.1",
"marked": "^0.8.0",
"next": "^9.2.0",
"next-runtime-dotenv": "^1.2.0",
"papaparse": "^5.1.1",
"prop-types": "^15.7.2",
"randomcolor": "^0.5.4",
"react": "^16.11.0",
"react-autocomplete": "^1.7.2",
"react-chartjs-2": "^2.8.0",
"react-dom": "^16.11.0",
"react-dropzone": "^10.1.10",
"react-feather": "^2.0.3",
"underscore.string": "^3.3.5"
},
"resolutions": {
"@turf/meta": "^6.x"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^6.8.0",
"eslint-config-xo-nextjs": "^1.5.0",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"lerna-changelog": "^1.0.0",
"webpack-bundle-analyzer": "^3.6.0",
"xo": "^0.25.3"
},
"xo": {
"extends": "xo-nextjs",
"semicolon": false,
"space": 2,
"env": "browser",
"rules": {
"camelcase": "warn",
"unicorn/catch-error-name": "off",
"react/jsx-sort-props": "off"
}
},
"changelog": {
"cacheDir": ".changelog",
"labels": {
"bug": ":bug: Bug Fix",
"build": ":building_construction: Build Process",
"cleanup": ":shower: Cleanup",
"design": ":rainbow: Design",
"documentation": ":memo: Documentation",
"enhancement": ":rocket: Enhancement",
"performance": ":racehorse: Performance",
"security": ":policeman: Security",
"dependencies": ":arrow_up: Dependencies"
},
"repo": "etalab/adresse.data.gouv.fr"
}
}