-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "showmychat",
"version": "1.0.0",
"main": ".eleventy.js",
"repository": "https://github.com/BenDMyers/showmy.chat.git",
"author": "Ben Myers <[email protected]>",
"license": "MIT",
"scripts": {
"build": "eleventy",
"dev": "eleventy --serve",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"prettier": "prettier . --check --ignore-unknown",
"stylelint": "stylelint '**/*.{css,html}'",
"eslint": "eslint '**/*.{mjs,js,html}'",
"htmlhint": "htmlhint '**/*.html'",
"markdownlint": "markdownlint-cli2 '**/*.md'",
"prepare": "husky install"
},
"dependencies": {
"@11ty/eleventy": "^1.0.2",
"axios": "^1.3.4",
"jest": "^29.4.3",
"serialize-javascript": "^6.0.1",
"title-case": "^3.0.3",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@netlify/functions": "^1.3.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-jsdoc": "^39.7.5",
"htmlhint": "^1.1.4",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"markdown-it": "^13.0.0",
"markdown-it-footnote": "^3.0.3",
"markdownlint-cli2": "^0.5.1",
"postcss-html": "^1.5.0",
"postcss-syntax": "^0.36.2",
"prettier": "2.8.4",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0"
},
"lint-staged": {
"*.{html}": "htmlhint",
"*.{mjs,js,html}": "eslint --cache --fix",
"*.{css,html}": "stylelint --fix",
"*.md": "markdownlint-cli2-fix",
"*.{mjs,js,css,md,json,jsonc,yml}": "prettier --write"
}
}