-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.44 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.44 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"private": true,
"name": "ythecombinator-space",
"description": "Matheus' personal page.",
"version": "6.0.0",
"main": "index.js",
"author": "Matheus Albuquerque",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"lint:deadcode": "! ts-prune | grep -v \"used in module\"",
"lint:a11y": "pa11y-ci --sitemap http://localhost:3000/sitemap.xml",
"format": "prettier --write src/",
"codegen:schema": "graphql-codegen --config codegen.ts --require dotenv/config",
"codegen:linkedin": "esno scripts/codegen-linkedin.ts"
},
"dependencies": {
"@apollo/client": "^3.7.7",
"@contentful/rich-text-plain-text-renderer": "^16.0.2",
"@contentful/rich-text-react-renderer": "^15.16.2",
"@contentful/rich-text-types": "^16.0.2",
"@graphql-codegen/cli": "^3.0.0",
"@graphql-codegen/schema-ast": "^3.0.0",
"@graphql-codegen/typescript": "^3.0.0",
"@graphql-codegen/typescript-operations": "^3.0.0",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@lyrasearch/lyra": "^0.4.6",
"@next/font": "^13.2.4",
"@radix-ui/react-navigation-menu": "^1.1.1",
"@radix-ui/react-tooltip": "^1.0.3",
"@react-spring/web": "^9.6.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.13",
"clsx": "^1.2.1",
"contentlayer": "^0.3.0",
"esbuild": "^0.17.8",
"framer-motion": "^9.0.2",
"fs-extra": "^11.1.0",
"github-slugger": "^2.0.0",
"got": "^12.6.0",
"graphql": "^16.6.0",
"handlebars": "^4.7.7",
"mdx-bundler": "^9.2.1",
"next": "^13.1.6",
"next-contentlayer": "^0.3.0",
"next-mdx-remote": "^4.4.1",
"next-seo": "^5.15.0",
"next-sitemap": "^4.1.3",
"next-themes": "^0.2.1",
"pa11y": "^6.2.3",
"pliny": "^0.0.10",
"postcss": "^8.4.21",
"puppeteer": "^20.5.0",
"react": "^18.2.0",
"react-content-loader": "^6.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-rough-notation": "^1.0.3",
"react-spring": "9.6.1",
"reading-time": "^1.5.0",
"rehype-accessible-emojis": "^0.3.2",
"rehype-autolink-headings": "^6.1.1",
"rehype-citation": "^1.0.0",
"rehype-preset-minify": "^6.0.0",
"rehype-prism-plus": "^1.5.1",
"rehype-slug": "^5.1.0",
"remark": "^14.0.2",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"smoothscroll-polyfill": "^0.4.4",
"suspend-react": "^0.0.9",
"tailwind-merge": "^1.9.1",
"tailwindcss": "^3.2.6"
},
"devDependencies": {
"@axe-core/react": "^4.6.0",
"@babel/core": "^7.20.12",
"@svgr/webpack": "^6.5.1",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.13.0",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/smoothscroll-polyfill": "^0.3.1",
"contentful-management": "^10.29.1",
"contentful-typescript-codegen": "^3.4.0",
"dotenv": "^16.0.3",
"eslint": "^8.34.0",
"eslint-config-next": "13.1.6",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-tailwindcss": "^3.8.3",
"esno": "^0.16.3",
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
"pa11y-ci": "^3.0.1",
"prettier": "^2.8.4",
"ts-prune": "^0.10.3",
"typescript": "^4.9.5",
"utility-types": "^3.10.0"
}
}