forked from inclusive-design/standards.inclusivedesign.ca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.88 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
{
"name": "standards.idrc.ocadu.ca",
"version": "0.0.1",
"description": "Website for IDRC standards development work.",
"main": "eleventy.config.js",
"type": "module",
"scripts": {
"build": "npm-run-all -l clean -s build:eleventy",
"build:eleventy": "eleventy",
"clean": "rimraf _site",
"debug": "DEBUG=Eleventy* eleventy",
"dev": "cross-env NODE_ENV=development eleventy --serve",
"lint": "run-s -l lint:*",
"lint:scripts": "biome check .",
"lint:markdown": "markdownlint-cli2 \"**/*.md\"",
"start": "npm-run-all -l clean dev",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inclusive-design/standards.idrc.ocadu.ca.git"
},
"keywords": ["eleventy", "standards", "static-site", "sveltia-cms"],
"author": "OCAD University <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/inclusive-design/standards.idrc.ocadu.ca/issues"
},
"homepage": "https://github.com/inclusive-design/standards.idrc.ocadu.ca#readme",
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"eleventy-plugin-broken-links": "^2.2.1",
"eleventy-plugin-fluid": "^3.0.0",
"eleventy-plugin-footnotes": "^0.11.0",
"infusion": "^4.8.0",
"rimraf": "^6.0",
"rosetta": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"biome-config-fluid": "github:greatislander/biome-config-fluid",
"cross-env": "^7.0.3",
"debug": "^4.3.5",
"husky": "^9.0.11",
"linkedom": "^0.18.6",
"lint-staged": "^15.2.7",
"markdownlint-cli2": "^0.17.0",
"markdownlint-config-fluid": "^0.1.5",
"npm-run-all2": "^7.0.0"
},
"lint-staged": {
"*.{js,cjs,json,jsonc}": "biome check . --write --no-errors-on-unmatched",
"*.md": ["markdownlint-cli2 --fix"]
}
}