-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
70 lines (70 loc) · 1.76 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
{
"name": "mdnext-blog",
"starter-name": "mdnext-blog",
"description": "This example shows using [MDX](https://github.com/mdx-js/mdx) with NextJS utilizing next-mdx-remote",
"version": "1.0.1",
"repository": "https://github.com/domitriusclark/mdnext-base.git",
"author": "domitriusclark",
"main": "next.config.js",
"scripts": {
"build": "next build",
"dev": "next",
"start": "next start",
"format": "yarn format:index && yarn format:pages && yarn format:src",
"format:index": "prettier --write \"*.{js,json,md}\"",
"format:pages": "prettier --write \"pages/**/*.js\"",
"format:src": "prettier --write \"src/**/*.{js,md,mdx}\""
},
"dependencies": {
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.6.5",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"cloudinary": "^1.26.3",
"fast-glob": "^3.2.4",
"framer-motion": "^3.2.1",
"fuse.js": "^6.4.1",
"gray-matter": "^4.0.2",
"next": "^11.0.1",
"next-connect": "^0.10.2",
"next-mdx-remote": "^3.0.4",
"next-seo": "^4.26.0",
"prism-react-renderer": "^1.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"use-cloudinary": "^4.1.0",
"react-query": "^3.19.6"
},
"devDependencies": {
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
],
"pages/**/*.js": [
"prettier --write"
],
"src/**/*.{js,md,mdx}": [
"prettier --write"
]
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"keywords": [
"nextjs",
"mdx"
],
"license": "ISC"
}