forked from mdx-js/mdx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 4.03 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"repository": "mdx-js/mdx",
"homepage": "https://mdxjs.com",
"bugs": "https://github.com/mdx-js/mdx/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"license": "MIT",
"private": true,
"workspaces": [
"examples/*",
"packages/*"
],
"engines": {
"node": "12.x"
},
"scripts": {
"build": "r -f cjs,esm -o dist --exclude 'babel-plugin-*,create-mdx,*loader,mdx,parcel-plugin-mdx,remark-*,*util' && cp packages/preact/dist/esm.js packages/preact/dist/esm.mjs",
"clean": "lerna exec \"rimraf dist node_modules\"",
"docs": "gatsby develop",
"docs-build": "gatsby build",
"docs-deploy": "now && now alias $(pbpaste) mdxjs.com && now alias $(pbpaste) www.mdxjs.com",
"format": "yarn lint --fix",
"lint": "eslint . --cache --ext js,jsx,md,mdx -f friendly",
"now-build": "yarn build && yarn docs-build",
"postinstall": "yarn-deduplicate || exit 0",
"prepare": "yarn build",
"prepublishOnly": "yarn build",
"pretest": "yarn build",
"publish": "lerna publish --force-publish=\"*\"",
"publish-ci": "lerna publish -y --canary --preid ci --pre-dist-tag ci",
"publish-next": "lerna publish --force-publish=\"*\" --dist-tag next --preid rc",
"test": "jest --runInBand --detectOpenHandles"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/plugin-syntax-jsx": "7.12.1",
"@babel/preset-env": "7.12.7",
"@babel/preset-react": "7.12.7",
"@mapbox/rehype-prism": "0.5.0",
"@mdx-js/mdx": "^1.6.17",
"@mdx-js/react": "^1.6.17",
"@mdx-js/test-util": "^1.6.17",
"@mdx-js/vue": "^1.6.17",
"@pkgr/rollup": "0.10.6",
"@vue/babel-preset-jsx": "1.2.4",
"@vue/test-utils": "1.1.1",
"babel-helper-vue-jsx-merge-props": "2.0.3",
"babel-loader": "8.2.2",
"babel-plugin-macros": "2.8.0",
"babel-plugin-remove-export-keywords": "^1.6.17",
"babel-plugin-transform-vue-jsx": "4.0.1",
"eslint": "7.14.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-xo": "0.33.1",
"eslint-formatter-friendly": "7.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-mdx": "1.8.2",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.5",
"gatsby": "2.25.3",
"hast-util-select": "4.0.1",
"husky": "4.3.0",
"jest": "26.6.3",
"lerna": "3.22.1",
"lint-staged": "10.5.1",
"memory-fs": "0.5.0",
"prettier-plugin-pkg": "0.8.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"rehype-add-classes": "1.0.0",
"rehype-katex": "4.0.0",
"remark-autolink-headings": "6.0.1",
"remark-frontmatter": "2.0.0",
"remark-math": "3.0.1",
"remark-mdx": "^1.6.17",
"remark-parse": "8.0.3",
"remark-preset-prettier": "0.4.0",
"remark-preset-wooorm": "8.0.1",
"remark-slug": "6.0.0",
"remark-stringify": "8.1.1",
"retext-english": "3.0.4",
"retext-preset-wooorm": "2.0.0",
"retext-sentence-spacing": "4.0.0",
"rimraf": "3.0.2",
"typescript": "4.0.5",
"unified": "9.2.0",
"vfile": "4.2.0",
"vue": "2.6.12",
"vue-template-compiler": "2.6.12",
"webpack": "4.44.2",
"yarn-deduplicate": "3.1.0"
},
"resolutions": {
"@babel/core": "7.12.9",
"@babel/preset-env": "7.12.7",
"@babel/preset-react": "7.12.7",
"@babel/preset-typescript": "^7.9.0",
"prettier": "2.2.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"remark-retext": "4.0.0",
"retext-sentence-spacing": "4.0.0",
"theme-ui": "0.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"testPathIgnorePatterns": [
"/.cache/",
"<rootDir>/examples/create-react-app"
],
"testEnvironment": "node"
},
"lint-staged": {
"*.{js,jsx,md,mdx}": [
"eslint --cache --fix -f friendly"
],
"*.{css,html,json,yml}": [
"prettier --write"
]
},
"prettier": {
"arrowParens": "avoid",
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
}
}