This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.86 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
{
"private": true,
"scripts": {
"vercel-build": "next build",
"prod": "next build && next start",
"dev": "next dev --turbo",
"lint": "next lint",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lighthouse": "unlighthouse --site 'http://localhost:3000'",
"lighthouse:ci": "unlighthouse-ci --site",
"postinstall": "pre-commit install --install-hooks"
},
"dependencies": {
"gray-matter": "^4.0.3",
"next": "~13.5.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.12.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@commitlint/types": "^18.4.0",
"@tailwindcss/typography": "^0.5.10",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.9.2",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-syntax-highlighter": "^15.5.10",
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"eslint-config-next": "^14.0.1",
"eslint-config-prettier": "^9.0.0",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"tailwindcss": "^3.3.5",
"typescript": "~5.2.2",
"unlighthouse": "^0.10.2"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"bracketSameLine": false,
"proseWrap": "always",
"plugins": [
"@trivago/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss"
],
"importOrder": [
"^(react$)|(react-dom$)$",
"^(next/(.*)$)|(next$)$",
"react-icons/[a-z]*",
"<THIRD_PARTY_MODULES>",
"^@\\w",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
},
"eslintConfig": {
"extends": [
"next/core-web-vitals",
"prettier"
]
}
}