This repository has been archived by the owner on Jan 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
121 lines (121 loc) · 3.22 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@opstrace/next-product-docs",
"version": "0.0.0-development",
"description": "React/Next.js Render Remote Content",
"keywords": [
"nextjs",
"documentation"
],
"bugs": {
"url": "https://github.com/opstrace/next-product-docs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/opstrace/next-product-docs.git"
},
"license": "Apache-2.0",
"author": "Opstrace, Inc.",
"contributors": [
"Patrick Heneise (https://github.com/PatrickHeneise)",
"Moritz Sattler (https://github.com/MoSattler)",
"Christian Mejlak (https://github.com/C-Mejlak)",
"Alexander Khvostov (https://github.com/alexanderKhvostov)"
],
"main": "dist/index.js",
"browser": {
"fs": false,
"child_process": false
},
"scripts": {
"prepare": "husky install",
"build": "rollup -c rollup.config.js",
"watch": "watch 'npm run build' ./src",
"style": "prettier --write \"./**/*.{js,jsx,json}\"",
"lint": "eslint --fix . --ext .js --ext .jsx --ext md --ext mdx",
"test": "jest",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{jsx}": [
"stylelint"
],
"*.{js,json,jsx,md,mdx}": [
"prettier --write"
],
"*.{js,jsx,md,mdx}": [
"eslint --cache --fix"
]
},
"dependencies": {
"@next/mdx": "^11.1.0",
"github-slugger": "^1.3.0",
"gray-matter": "^4.0.3",
"lodash": "^4.17.21",
"marked": "^2.1.3",
"mdx-observable": "0.2.0",
"next-mdx-remote": "^3.0.4",
"prism-react-renderer": "1.2.1",
"react-click-away-listener": "2.0.3",
"react-copy-to-clipboard": "^5.0.3",
"react-instantsearch-dom": "^6.12.1",
"react-markdown": "^6.0.3",
"react-scroll": "^1.8.3",
"rehype-autolink-headings": "^5.1.0",
"rehype-slug": "^4.0.1",
"remark-external-links": "^8.0.0",
"remark-gfm": "^2.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@mdx-js/runtime": "^1.6.22",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-mdx": "^1.14.1",
"eslint-plugin-react": "^7.24.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.1.2",
"next": "^11.0.0",
"nock": "^13.1.1",
"node-fetch": "^2.6.1",
"pinst": "^2.1.6",
"prettier": "^2.3.2",
"react": "*",
"react-dom": "*",
"rollup": "^2.56.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"watch": "^1.0.2"
},
"peerDependencies": {
"next": ">=11.x",
"react": "~17.x",
"react-dom": "~17.x"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}