-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.59 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "craveytrain.com",
"version": "9.0.0",
"description": "The personal site of Mike Cravey (@craveytrain).",
"homepage": "https://craveytrain.com",
"main": "index.js",
"scripts": {
"clean:themes": "rimraf _themes",
"clean:site": "rimraf _site",
"clean": "run-p clean:*",
"watch:themes": "tsc -p tsconfig.json --watch",
"watch:site": "ELEVENTY_ENV=development eleventy --serve --quiet",
"dev": "NODE_ENV=dev npm-run-all clean:site build:themes -p watch:* -- --watch",
"prebuild:themes": "run-s clean:themes",
"build:themes": "tsc -p tsconfig.json",
"prebuild:site": "run-s clean:site",
"build:site": "ELEVENTY_ENV=production eleventy",
"build": "run-s build:themes build:site",
"debug": "DEBUG=* eleventy",
"format": "prettier --write .",
"format:webmention": "prettier --write ./data/webmentions.json",
"lint": "run-p lint:fix:*",
"lint:fix:js": "eslint --fix '**/*.js'",
"lint:fix:css": "stylelint --fix '**/*.css'",
"lint:ci": "run-p lint:ci:*",
"lint:ci:js": "eslint '**/*.js'",
"lint:ci:css": "stylelint '**/*.css'",
"webmention": "node ./scripts/update-webmention.js",
"upgrade-deps": "ncu -u",
"postinstall": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.css": "stylelint --allow-empty-input",
"*.{css,html,js,json,md,yaml}": "prettier --write"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/craveytrain/craveytrain.com.git"
},
"keywords": [
"blog",
"craveytrain"
],
"author": "Mike Cravey <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/craveytrain/craveytrain.com/issues"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0-alpha.4",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-syntax-import-assertions": "^7.23.3",
"csso": "^5.0.5",
"dotenv": "^16.3.1",
"eleventy-plugin-excerpt": "^1.1.2",
"eleventy-plugin-svg-contents": "^0.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^7.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"lodash": "^4.17.21",
"npm-check-updates": "^16.14.12",
"npm-run-all": "^4.1.5",
"plur": "^5.1.0",
"prettier": "^3.2.2",
"purgecss": "^5.0.0",
"rimraf": "^5.0.5",
"sanitize-html": "^2.11.0",
"stylelint": "^16.1.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"netlify-plugin-mastodon-alias": "^1.0.1"
}
}