-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "aljosephcondino",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"prepare": "husky install"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"@mailchimp/mailchimp_marketing": "^3.0.74",
"@tailwindcss/typography": "^0.5.2",
"@vercel/og": "^0.5.2",
"autoprefixer": "^10.2.5",
"clsx": "^1.2.1",
"comma-number": "^2.1.0",
"contentlayer": "^0.3.1",
"date-fns": "^2.22.1",
"gray-matter": "^4.0.2",
"mdx-prism": "^0.3.3",
"next": "^13.2.4",
"next-contentlayer": "^0.3.1",
"next-themes": "^0.2.1",
"postcss": "^8.2.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reading-time": "^1.3.0",
"rehype": "^11.0.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-code-titles": "^0.1.1",
"rss": "^1.2.2",
"tailwindcss": "^3.0.23"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"eslint": "^7.28.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "2.8.7",
"typescript": "^4.6.2"
}
}