This repository has been archived by the owner on Dec 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.61 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
{
"name": "@gregrickaby/blog",
"version": "1.0.0",
"private": true,
"description": "My blog.",
"author": "Greg Rickaby <greg@gregrickaby.com>",
"license": "MIT",
"keywords": [
"blog"
],
"homepage": "https://gregrickaby.com",
"repository": {
"type": "git",
"url": "git+https://github.com/gregrickaby/blog.git"
},
"bugs": {
"url": "https://github.com/gregrickaby/blog/issues"
},
"scripts": {
"build": "next build",
"build:images": "sharp --input './public/blog/images/*.{jpg,jpeg,png,webp}' --output './public/optimized' resize '1120'",
"build:photos": "sharp --input './data/photos/*.jpg' --output './public/optimized' --withMetadata resize '1120'",
"clean": "rimraf .next",
"dev": "npm run clean && next dev",
"export": "next export",
"format": "npx prettier '**/*.{js,jsx,ts,tsx,md,mdx,html,css,scss,json,yml}' --config=.prettierrc.js --write || true",
"images": "run-p build:images build:photos",
"lint": "run-p lint:*",
"lint:css": "npx stylelint '**/*.css' --config=.stylelintrc.js --fix || true",
"lint:js": "npx eslint '**/*.{js,ts,jsx,tsx}' --fix || true && next lint",
"lint:md": "npx markdownlint '**/*.md' --config=.markdownlint.json --fix",
"postbuild": "next-sitemap",
"postinstall": "run-s images build",
"start": "next start"
},
"dependencies": {
"next": "^13.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@evilmartians/lefthook": "^1.2.6",
"@babel/core": "^7.20.7",
"@fec/remark-a11y-emoji": "^3.1.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"classnames": "2.3.2",
"dayjs": "^1.11.7",
"eslint": "^8.30.0",
"eslint-config-next": "^13.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"exifr": "^7.1.3",
"fraction.js": "^4.2.0",
"gray-matter": "^4.0.3",
"image-size": "^1.0.2",
"markdownlint": "^0.27.0",
"markdownlint-cli": "^0.32.2",
"next-mdx-remote": "4.2.0",
"next-seo": "^5.15.0",
"next-sitemap": "^3.1.43",
"npm-run-all": "^4.1.5",
"nprogress": "^0.2.0",
"postcss": "^8.4.20",
"postcss-preset-env": "^7.8.3",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"prism-react-renderer": "^1.3.5",
"reading-time": "^1.5.0",
"remark-prism": "^1.3.6",
"remark-slug": "^7.0.1",
"rimraf": "^3.0.2",
"sharp": "^0.31.3",
"sharp-cli": "^4.1.0",
"stylelint": "^14.16.0",
"stylelint-config-standard": "^29.0.0",
"tailwindcss": "3.2.4"
},
"overrides": {
"@mdx-js/mdx": "2.1.5",
"@mdx-js/react": "2.1.5"
}
}