-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.7 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
{
"private": true,
"name": "docs",
"license": "MIT",
"homepage": "https://github.com/unified-doc/docs",
"repository": "https://github.com/unified-doc/docs",
"bugs": "https://github.com/unified-doc/docs/issues",
"author": "Chris Zhou <[email protected]> (https://chrisrzhou.io)",
"scripts": {
"bootstrap": "npm install",
"build": "gatsby build",
"clean": "rm -rf dist",
"docs": "gatsby develop",
"lint": "xo --fix; tsc"
},
"dependencies": {
"@mapbox/rehype-prism": "^0.5.0",
"@mdx-js/mdx": "^1.6.16",
"@mdx-js/react": "^1.6.16",
"dedent": "^0.7.0",
"diff": "^4.0.2",
"dotenv": "^8.2.0",
"gatsby": "^2.24.57",
"gatsby-plugin-mdx": "^1.2.39",
"gatsby-plugin-theme-ui": "^0.3.0",
"gatsby-source-filesystem": "^2.3.29",
"gatsby-source-github-api": "^0.2.1",
"hast-util-from-parse5": "^6.0.0",
"hast-util-to-html": "^7.1.1",
"jszip": "^3.5.0",
"jszip-utils": "^0.1.0",
"lodash": "^4.17.20",
"mammoth": "^1.4.13",
"mdx-utils": "^0.2.0",
"microtip": "^0.2.2",
"moment": "^2.27.0",
"parse5": "^6.0.1",
"pdfjs-dist": "^2.4.456",
"prism-react-renderer": "^1.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-live": "^2.2.2",
"rehype-highlight": "^4.0.0",
"rehype-react": "^6.1.0",
"remark-slug": "^6.0.0",
"theme-ui": "^0.3.1",
"tippy.js": "^6.2.6",
"unified-doc": "^3.3.1",
"unified-doc-dom": "^2.0.1",
"unified-doc-react": "^3.1.0",
"unist-util-find": "^1.0.1",
"unist-util-find-all-after": "^3.0.1",
"unist-util-visit": "^2.0.3",
"uuid": "^8.3.0",
"xast-util-from-xml": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"babel-preset-gatsby": "^0.5.9",
"eslint-config-xo-react": "^0.23.0",
"husky": "^4.3.0",
"typescript": "^4.0.2",
"xo": "^0.33.1"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"prettier": {
"bracketSpacing": true,
"jsxBracketSameLine": true,
"trailingComma": "all",
"useTabs": false
},
"xo": {
"env": [
"browser"
],
"extends": [
"xo-react"
],
"prettier": true,
"rules": {
"capitalized-comments": "off",
"import/extensions": "off",
"import/no-anonymous-default-export": "off",
"import/no-unassigned-import": "off",
"new-cap": "off",
"no-alert": "off",
"no-warning-comments": "off",
"padding-line-between-statements": "off",
"react/no-array-index-key": "off",
"react/function-component-definition": "off",
"react/prop-types": "off",
"unicorn/no-fn-reference-in-iterator": "off",
"unicorn/no-reduce": "off"
}
}
}