-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.29 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
{
"name": "trivet-monolingual",
"version": "1.1.2",
"description": "Trivet is a simple starter kit for Eleventy-based static sites for the Fluid Project.",
"scripts": {
"build": "npm-run-all -l clean -p build:*",
"build:eleventy": "cross-env NODE_ENV=production eleventy",
"clean": "rimraf _site",
"cms": "netlify-cms-proxy-server",
"debug": "DEBUG=Eleventy* eleventy",
"dev": "cross-env NODE_ENV=development eleventy --serve",
"lint": "run-s -l lint:*",
"lint:styles": "stylelint \"**/*.css\"",
"lint:scripts": "eslint \"**/*.{js,md}\"",
"lint:markdown": "markdownlint-cli2 \"**/*.md\"",
"lint:yml": "eslint \"**/*.yml\"",
"start": "npm-run-all -l clean -p start:*",
"start:eleventy": "run-p dev cms",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluid-project/trivet-monolingual.git"
},
"author": "OCAD University",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/fluid-project/trivet-monolingual/issues"
},
"homepage": "https://github.com/fluid-project/trivet-monolingual#readme",
"dependencies": {
"@11ty/eleventy": "2.0.1",
"@11ty/eleventy-navigation": "0.3.5",
"@11ty/eleventy-plugin-rss": "1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "5.0.0",
"eleventy-plugin-fluid": "2.7.3",
"infusion": "4.7.1",
"netlify-cms": "2.10.192",
"prop-types": "15.8.1",
"react": "16.14.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"cross-env": "7.0.3",
"debug": "4.3.7",
"eslint": "8.57.1",
"eslint-config-fluid": "2.1.3",
"eslint-plugin-jsdoc": "50.5.0",
"eslint-plugin-markdown": "3.0.1",
"eslint-plugin-yml": "1.15.0",
"husky": "9.1.6",
"image-size": "1.1.1",
"linkedom": "0.18.5",
"lint-staged": "15.2.10",
"markdownlint-cli2": "0.14.0",
"markdownlint-config-fluid": "0.1.5",
"netlify-cms-proxy-server": "1.3.24",
"npm-run-all2": "6.2.6",
"rimraf": "6.0.1",
"stylelint": "14.16.1",
"stylelint-config-fluid": "1.0.0",
"stylelint-use-logical-spec": "5.0.1"
},
"lint-staged": {
"*.css": "stylelint --fix",
"*.{js,yml}": "eslint --fix",
"*.md": [
"markdownlint-cli2 --fix",
"eslint --fix"
]
}
}