-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.12 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
{
"name": "dainemawer.com",
"version": "1.0.0",
"description": "Personal website and blog for Daine Mawer",
"private": true,
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-staged": "lint-staged",
"prettier": "prettier --write --ignore-unknown ."
},
"git": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"keywords": [],
"author": "Daine Mawer <hello@dainemawer.com>",
"license": "ISC",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@next/third-parties": "14.2.7",
"@portabletext/react": "3.1.0",
"@sanity/block-content-to-react": "3.0.0",
"@sanity/code-input": "4.1.4",
"@sanity/icons": "3.4.0",
"@sanity/image-url": "1.0.2",
"@sanity/vision": "3.56.0",
"@vercel/analytics": "1.3.1",
"@vercel/speed-insights": "1.0.12",
"bright": "0.8.4",
"classnames": "2.3.2",
"clsx": "2.0.0",
"date-fns": "2.30.0",
"gray-matter": "4.0.3",
"next": "14.2.7",
"next-mdx-remote": "4.4.1",
"next-sanity": "9.4.7",
"next-themes": "0.2.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-wrap-balancer": "1.1.0",
"reading-time": "1.5.0",
"rehype-autolink-headings": "7.0.0",
"rehype-slug": "6.0.0",
"remark-frontmatter": "4.0.1",
"remark-gfm": "3.0.1",
"remark-reading-time": "2.0.1",
"remark-toc": "8.0.1",
"rss": "1.2.2",
"sanity": "3.56.0",
"schema-dts": "1.1.2",
"sharp": "0.33.5",
"speakingurl": "14.0.1",
"styled-components": "6.1.8",
"swr": "2.2.2"
},
"devDependencies": {
"@svgr/webpack": "8.1.0",
"@tailwindcss/typography": "0.5.10",
"@types/node": "20.6.2",
"@types/react": "18.2.21",
"autoprefixer": "10.4.20",
"eslint": "8.49.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-typescript-sort-keys": "3.0.0",
"postcss": "8.4.41",
"prettier": "3.0.3",
"tailwindcss": "3.4.10",
"typescript": "5.5.4"
}
}