This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
72 lines (72 loc) · 1.75 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
71
72
{
"name": "next-mdx-enhanced",
"description": "Next.js plugin for rendering MDX with layouts and front matter",
"version": "5.0.0",
"bugs": {
"url": "https://github.com/hashicorp/next-plugin-mdx-enhanced/issues"
},
"contributors": [
"Jeff Escalante",
"Kevin Pruett"
],
"dependencies": {
"@babel/core": "7.x",
"@mdx-js/loader": "^1.6.19",
"debug": "^4.2.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"gray-matter": "^4.0.2",
"loader-utils": "^2.0.0",
"prebuild-webpack-plugin": "1.1.1",
"stringify-object": "^3.3.0"
},
"devDependencies": {
"cross-spawn": "^7.0.3",
"husky": "^4.3.0",
"jest": "^26.6.1",
"next": "^10.0.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rmfr": "^2.0.0",
"webpack": "^4.44.1"
},
"homepage": "https://github.com/hashicorp/next-plugin-mdx-enhanced#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/"
]
},
"keywords": [
"front matter",
"layout",
"mdx",
"nextjs",
"plugin"
],
"license": "MPL-2.0",
"main": "index.js",
"peerDependencies": {
"next": "9.0.x - 10.0.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hashicorp/next-plugin-mdx-enhanced.git"
},
"scripts": {
"lint": "prettier --write \"./**/*.{js,jsx,json}\"",
"release:major": "release major && npm publish",
"release:minor": "release minor && npm publish",
"release:patch": "release patch && npm publish",
"test": "jest",
"test-dev-mode": "cd __tests__/fixtures/basic && next dev"
}
}