-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "writing",
"description": "Personal blog",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"export": "next export",
"format": "npm run prettier -- \"{src,posts,public}/**/*.{js,jsx,ts,tsx,json,css,md,yml,yaml}\"",
"postbuild": "tsx src/scripts/feed.ts",
"start": "next start",
"typecheck": "tsc",
"prettier": "prettier --write"
},
"repository": {
"type": "git",
"url": "https://github.com/blakeembrey/writing.git"
},
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,yml,yaml}": "npm run prettier"
},
"dependencies": {
"date-fns": "^3.6.0",
"globby": "^14.0.2",
"gray-matter": "^4.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-free-style": "^11.1.0",
"remark": "^15.0.1",
"remark-highlight.js": "^7.0.1",
"remark-html": "^16.0.1",
"typescript": "^5.5.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"feed": "^4.2.0",
"next": "^14.2.7",
"prettier": "^3.3.3",
"tsx": "^4.19.0"
}
}