This repository has been archived by the owner on May 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
62 lines (62 loc) · 1.96 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
{
"name": "MDXP",
"description": "Web Slides Made Easy",
"private": true,
"repository": "https://github.com/0phoff/MDXP.git",
"homepage": "https://0phoff.github.io/MDXP",
"author": "0phoff <[email protected]>",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"examples/*"
],
"nohoist": [
"docz/**/eslint",
"docz/**/eslint/**"
]
},
"scripts": {
"start": "lerna run --no-private --ignore '@mdxp/{rehypex-plugins,create-webpack}' --parallel start",
"build": "lerna run --no-private --ignore '@mdxp/{rehypex-plugins,create-webpack}' build",
"clean": "lerna run clean",
"lint": "eslint --cache --ext js,jsx -f friendly",
"lint:fix": "eslint --cache --ext js,jsx -f friendly --fix",
"examples:build": "yarn build && lerna run build:web",
"docz:dev": "docz dev",
"docz:build": "docz build && yarn docz:examples",
"docz:clean": "docz clean && rm -rf .docz && rm -rf docs",
"docz:examples": "yarn examples:build && node ./scripts/copy-examples.js",
"pub": "yarn clean && yarn build && lerna version && lerna publish from-git && yarn pub:docs",
"pub:docs": "yarn docz:clean && yarn docz:build && echo '!!!!!\nCommit documentation\n!!!!!'"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@mdx-js/react": "^1.5.8",
"@mdx-js/runtime": "^1.6.18",
"babel-eslint": "^10.1.0",
"docz": "^2.3.1",
"eslint": "^7.10.0",
"eslint-config-xo": "^0.32.1",
"eslint-formatter-friendly": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mdx": "^1.8.2",
"eslint-plugin-react": "^7.21.2",
"fs-extra": "^9.0.1",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^10.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"stringify-object": "^3.3.0",
"theme-ui": "^0.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": "yarn lint:fix"
}
}