-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
{
"name": "docs-site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@radix-ui/react-dropdown-menu": "^0.1.6",
"@tailwindcss/typography": "^0.5.2",
"@vercel/analytics": "^0.1.6",
"classnames": "^2.3.1",
"contentlayer": "^0.2.5",
"next": "12.1.6",
"next-contentlayer": "^0.2.5",
"next-sitemap": "^3.1.7",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-medium-image-zoom": "^4.4.3",
"rehype-highlight": "^5.0.2"
},
"devDependencies": {
"@types/node": "17.0.41",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"autoprefixer": "^10.4.7",
"eslint": "8.17.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"postcss": "^8.4.14",
"postcss-import": "^14.1.0",
"prettier": "2.6.2",
"tailwindcss": "^3.0.24",
"typescript": "4.7.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}