-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.25 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.25 KB
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
{
"name": "cartes.gouv.fr-documentation",
"version": "1.0.0",
"description": "Site statique de documentation pour cartes.gouv.fr",
"scripts": {
"build": "npx @11ty/eleventy",
"build-ghpages": "npx @11ty/eleventy --pathprefix=/cartes.gouv.fr-documentation/",
"postbuild": "npx pagefind --site _site/ --output-subdir \"_pagefind\"",
"start": "npx @11ty/eleventy --serve --quiet --pathprefix=/aide",
"prestart": "npm run build",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"debugstart": "DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"format:prettier": "prettier --check .",
"format:prettier:fix": "prettier --write .",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git@github.com:IGNF/cartes.gouv.fr-documentation.git"
},
"author": {
"name": "Institut national de l'information géographique et forestière (IGN)",
"email": "geoplateforme@ign.fr",
"url": "https://www.ign.fr"
},
"license": "MIT",
"engines": {
"node": ">=24.0.0"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-bundle": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@gouvfr/dsfr": "^1.14.3",
"@prettier/plugin-xml": "^3.4.2",
"chalk": "^5.0.0",
"husky": "^9.0.11",
"ics": "^3.8.1",
"lint-staged": "^16.0.0",
"luxon": "^3.5.0",
"markdown-it-anchor": "^9.0.0",
"markdown-it-attrs": "^4.2.0",
"markdown-it-container": "^4.0.0",
"mermaid": "^11.0.0",
"pagefind": "^1.4.0",
"prettier": "^3.7.4"
},
"dependencies": {
"@codegouvfr/eleventy-plugin-calendar": "^3.0.5",
"@codegouvfr/eleventy-plugin-i18n": "^0.1.3",
"jsdom": "^27.0.0",
"keycloak-js": "^26.2.2",
"swagger-ui": "^5.31.0"
},
"lint-staged": {
"*.{js,ts,json,css,scss,xml,yml,yaml,html}": [
"prettier --write"
]
}
}