-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.07 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
{
"name": "natwelch.com",
"version": "3.0.0",
"description": "Nat's personal site.",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next lint --fix && next dev -p 8080",
"lint": "next lint --fix",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start -p $PORT"
},
"repository": {
"type": "git",
"url": "git+https://github.com/icco/natwelch.com.git"
},
"author": "Nat Welch <[email protected]>",
"homepage": "https://natwelch.com",
"dependencies": {
"@date-fns/tz": "^1.0.2",
"@heroicons/react": "^2.0.18",
"@mdx-js/react": "^3.0.0",
"@next/env": "^15.0.1",
"@root/walk": "^1.1.0",
"contentlayer2": "^0.5.0",
"daisyui": "^4.7.3",
"date-fns": "^4.1.0",
"gray-matter": "^4.0.3",
"isomorphic-unfetch": "^4.0.0",
"lodash": "^4.17.21",
"next": "^15.0.1",
"next-contentlayer2": "^0.5.0",
"next-secure-headers": "^2.1.0",
"next-sitemap": "^4.0.0",
"next-themes": "^0.4.3",
"prop-types": "^15.7.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rehype-slug": "^6.0.0",
"remark-definition-list": "^2.0.0",
"remark-gfm": "^4.0.0",
"rss-parser": "^3.13.0",
"unified": "^11.0.0",
"vivus": "^0.4.6"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@tailwindcss/typography": "^0.5.10",
"@types/lodash": "^4.14.178",
"@types/mdx": "^2.0.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"autoprefixer": "^10.4.16",
"dlx": "^0.2.1",
"eslint": "^9.0.0",
"eslint-config-next": "^15.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-markdown": "^5.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"postcss": "^8.4.31",
"prettier": "^3.0.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"webpack": "^5.10.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": false
}
}