-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.45 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
{
"scripts": {
"dev": "next dev",
"build": "next build",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"format": "npm run prettier -- --write",
"format-check": "npm run prettier -- --list-different",
"lint": "next lint",
"start": "next start"
},
"engines": {
"node": "18.x"
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"@vercel/analytics": "^0.1.11",
"clsx": "^1.1.1",
"esbuild": "^0.14.5",
"mdx-bundler": "^8.0.1",
"next": "^13.2.4",
"next-plausible": "^3.7.2",
"next-seo": "^4.28.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swr": "^1.2.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.2.4",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"@types/node": "^17.0.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.5.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.4",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.0.1",
"sharp": "^0.32.0",
"tailwindcss": "^3.0.7",
"typescript": "^4.5.4"
}
}