-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.14 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
{
"name": "seo-web-portfolio",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"lint:fix": "eslint src/** --fix",
"prettier": "prettier --check ./src",
"prettier:fix": "prettier --write --check ./src",
"prettier:mdx": "prettier --parser html --write ./src/contents"
},
"dependencies": {
"@aws-sdk/client-cognito-identity": "^3.540.0",
"@aws-sdk/client-s3": "^3.540.0",
"@aws-sdk/credential-providers": "^3.540.0",
"axios": "^1.6.7",
"clsx": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-router-dom": "^6.22.2",
"remark-unwrap-images": "^4.0.0"
},
"devDependencies": {
"@mdx-js/language-server": "^0.4.1",
"@mdx-js/react": "^3.0.1",
"@mdx-js/rollup": "^3.0.1",
"@tailwindcss/typography": "^0.5.10",
"@types/hast": "^3.0.4",
"@types/mdx": "^2.0.11",
"@types/open-graph-scraper": "^4.8.5",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.18",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"hast-util-parse-selector": "^4.0.0",
"hast-util-select": "^6.0.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"react-markdown": "^9.0.1",
"rehype-pretty-code": "^0.13.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^4.0.0",
"shiki": "^1.1.7",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vfile-matter": "^5.0.0",
"vite": "^5.1.4"
}
}