-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.65 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
{
"name": "openapinotswagger.com",
"starter-name": "mdnext-tailwind",
"description": "MDNEXT template with Tailwind CSS",
"version": "1.0.1",
"repository": "https://github.com/apisyouwonthate/openapinotswagger.git",
"author": "Eka @ekafyi",
"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": {
"fast-glob": "^3.2.4",
"fathom-client": "^3.0.0",
"fuse.js": "^6.4.1",
"gray-matter": "^4.0.3",
"next": "^10.2.0",
"next-mdx-remote": "^3.0.1",
"next-seo": "^4.24.0",
"prism-react-renderer": "^1.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"use-cloudinary": "^4.0.2"
},
"devDependencies": {
"autoprefixer": "^10.2.5",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"postcss": "^8.2.14",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"tailwindcss": "^2.1.2"
},
"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"
}