forked from IGNF/cartes.gouv.fr-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.14 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
{
"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",
"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": "[email protected]:codegouvfr/eleventy-dsfr.git"
},
"author": {
"name": "Institut National de l'Information Géographique et Forestière (IGN)",
"email": "[email protected]",
"url": "https://www.ign.fr"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^4.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-bundle": "^1.0.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@gouvfr/dsfr": "^1.11.0",
"chalk": "^5.0.0",
"husky": "^9.0.11",
"ics": "^3.2.0",
"lint-staged": "^15.2.2",
"luxon": "^3.2.1",
"markdown-it-anchor": "^9.0.0",
"markdown-it-attrs": "^4.1.6",
"markdown-it-container": "^4.0.0",
"mermaid": "^10.7.0",
"pagefind": "^1.0.2",
"prettier": "^3.2.5"
},
"dependencies": {
"@codegouvfr/eleventy-plugin-calendar": "^3.0.5",
"@codegouvfr/eleventy-plugin-i18n": "^0.1.3",
"jsdom": "^24.0.0",
"swagger-ui": "^5.17.10"
},
"lint-staged": {
"*.{js,ts,json,md,css,scss,xml,yml,yaml,html}": [
"prettier --write"
]
}
}