forked from EnterpriseDB/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.44 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
{
"name": "docs",
"private": true,
"description": "EDB Docs",
"version": "0.1.0",
"license": "Apache-2.0",
"engines": {
"node": "14.x"
},
"scripts": {
"clean": "gatsby clean",
"clean-develop": "gatsby clean && gatsby develop",
"develop": "gatsby develop",
"config-sources": "python3 scripts/source/config_sources.py",
"format": "prettier --write src/**/*.js gatsby-*.js",
"build": "gatsby build --prefix-paths",
"serve-build": "gatsby serve --prefix-paths",
"prepare": "husky install",
"update-icons": "node scripts/createIconTypes.js && node scripts/createIconNames.js",
"build-pdf": "docker-compose -f docker/docker-compose.build-pdf.yaml run --rm --entrypoint scripts/pdf/generate_pdf.py pdf-builder",
"build-all-pdfs": "for i in product_docs/docs/**/*/ ; do echo \"$i\"; yarn build-pdf ${i%} || exit 1; done",
"build-all-pdfs-ci": "for i in product_docs/docs/**/*/ ; do echo \"$i\"; python3 scripts/pdf/generate_pdf.py ${i%} || exit 1; done",
"fix-mtimes": "python3 scripts/source/git-restore-mtime.py",
"count": "find product_docs/docs/ advocacy_docs/ external_sources/ -name '*.mdx' | wc -l",
"heroku-postbuild": "gatsby build",
"build-legacy-redirects-nginx": "gatsby clean && gatsby build --prefix-paths && python3 scripts/legacy_redirects/clean_up_output.py"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.1",
"@mdx-js/react": "^1.6.1",
"algoliasearch": "^4.2.0",
"balance-text": "^3.3.0",
"bl": "5.0.0",
"bootstrap": "4.6.0",
"gatsby": "^3.2.1",
"gatsby-cli": "^3.2.0",
"gatsby-plugin-algolia": "^0.18.0",
"gatsby-plugin-catch-links": "^3.2.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-google-tagmanager": "^3.2.0",
"gatsby-plugin-manifest": "^3.2.0",
"gatsby-plugin-mdx": "^2.2.0",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-netlify": "^3.2.0",
"gatsby-plugin-nginx-redirect": "^0.0.11",
"gatsby-plugin-react-helmet": "^4.2.0",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sass": "^4.2.0",
"gatsby-plugin-sharp": "^3.2.0",
"gatsby-plugin-sitemap": "^3.2.0",
"gatsby-remark-autolink-headers": "^3.2.0",
"gatsby-remark-images": "4.2.0",
"gatsby-remark-prismjs": "^4.2.0",
"gatsby-source-filesystem": "^3.2.0",
"gatsby-transformer-json": "^3.2.0",
"gatsby-transformer-remark": "^3.2.0",
"gatsby-transformer-sharp": "^3.2.0",
"graceful-fs": "^4.2.4",
"is-absolute-url": "^3.0.3",
"markdown-to-jsx": "^7.0.0",
"prismjs": "^1.21.0",
"react": "^17.0.2",
"react-bootstrap": "^1.0.1",
"react-dom": "^17.0.2",
"react-helmet": "^6.0.0",
"react-instantsearch-dom": "^6.9.0",
"remark-admonitions": "https://github.com/josh-heyer/remark-admonitions",
"sass": "^1.32.5",
"truncate-utf8-bytes": "^1.0.2"
},
"devDependencies": {
"fast-glob": "^3.2.5",
"hast-util-is-element": "^1.1.0",
"hast-util-to-text": "^2.0.1",
"husky": "^6.0.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.0",
"react-refresh": "^0.10.0",
"rehype-format": "^3.1.0",
"rehype-parse": "^7.0.1",
"rehype-remark": "^8.0.0",
"rehype-stringify": "^8.0.0",
"remark-frontmatter": "^2.0.0",
"remark-mdx": "^1.6.22",
"remark-stringify": "^8.1.1",
"semver-compare": "^1.0.0",
"to-vfile": "^6.1.0",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/EnterpriseDB/docs"
}
}