-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.92 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
65
66
67
68
69
70
71
{
"name": "trivet",
"engines": {
"node": ">=24"
},
"version": "2.1.2",
"description": "Trivet is a simple starter kit for Eleventy-based static sites for the Fluid Project.",
"type": "module",
"scripts": {
"build": "run-s -l clean build:*",
"build:eleventy": "cross-env NODE_ENV=production eleventy",
"clean": "rimraf _site",
"debug": "DEBUG=Eleventy* eleventy",
"dev": "cross-env NODE_ENV=development eleventy --serve",
"lint": "run-s -l lint:*",
"lint:eslint": "eslint",
"lint:markdownlint": "markdownlint-cli2 \"**/*.md\"",
"lint:stylelint": "stylelint \"**/*.css\"",
"start": "run-s -l clean dev",
"prepare": "husky",
"test": "echo \"No test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluid-project/trivet.git"
},
"author": "OCAD University",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/fluid-project/trivet/issues"
},
"homepage": "https://github.com/fluid-project/trivet#readme",
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-navigation": "^1.0.0",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/font-awesome": "^1.0.1",
"eleventy-plugin-fluid": "^3.0.0",
"infusion": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@inclusive-design/eslint-config": "^0.3.0",
"@inclusive-design/markdownlint-config": "^0.1.0",
"@inclusive-design/stylelint-config": "^0.1.0",
"cross-env": "^10.0.0",
"debug": "^4.0.0",
"eslint": "^10.0.0",
"husky": "^9.0.0",
"linkedom": "^0.18.0",
"lint-staged": "^16.0.0",
"markdownlint-cli2": "^0.22.0",
"npm-run-all2": "^8.0.0",
"rimraf": "^6.0.0",
"stylelint": "^17.0.0"
},
"lint-staged": {
"*.css": [
"stylelint --fix"
],
"*.{cjs,js,json,mjs}": [
"eslint --fix"
],
"*.md": [
"eslint --fix",
"markdownlint-cli2 --fix"
]
}
}