-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.58 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.58 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
{
"name": "maxwell-bursons-blog",
"type": "module",
"description": "Blog of Maxwell Burson",
"version": "1.0.0",
"author": "Maxwell Burson <maxwellburson@gmail.com>",
"bugs": {
"url": "https://github.com/maxburs/blog/issues"
},
"engines": {
"node": "20"
},
"homepage": "https://maxburson.com",
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/maxburson/blog.git"
},
"scripts": {
"dev": "next",
"build": "yarn generateFeeds && next build",
"format": "prettier --write --ignore-unknown .",
"start": "next start",
"typecheck": "tsc",
"generateFeeds": "node --import @swc-node/register/esm-register ./scripts/generate-feeds.ts",
"prepare": "husky"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown "
},
"dependencies": {
"date-fns": "2.10.0",
"gray-matter": "4.0.2",
"next": "14",
"normalize.css": "^8.0.1",
"prismjs": "^1.25.0",
"react": "18",
"react-dom": "18",
"remark": "15",
"remark-gfm": "^4.0.0",
"remark-html": "16",
"sass": "^1.79.4",
"typescript": "latest"
},
"devDependencies": {
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.7.26",
"@swc/types": "^0.1.12",
"@types/jest": "^25.2.2",
"@types/node": "22",
"@types/react": "18",
"@types/react-dom": "18",
"feed": "^4.2.1",
"gatsby-remark-prismjs": "7",
"husky": "9",
"lint-staged": "15",
"prettier": "3"
},
"packageManager": "yarn@4.4.0"
}