forked from cloudflare/cloudflare-docs-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.32 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
{
"name": "cloudflare-docs-engine",
"private": true,
"description": "Cloudflare Workers documentation engine",
"version": "0.1.0",
"author": "Cloudflare <[email protected]>",
"dependencies": {
"@adaptivelink/pops": "0.2.10",
"@cloudflare/cloudflare-brand-assets": "^4.7.1",
"@material-ui/core": "4.11.0",
"@mdx-js/mdx": "1.6.6",
"@mdx-js/react": "1.6.6",
"@reach/skip-nav": "0.10.5",
"animejs": "3.2.0",
"focus-group": "0.3.1",
"focus-visible-polyfill": "1.0.0",
"gatsby": "2.24.7",
"gatsby-image": "2.4.13",
"gatsby-plugin-layout": "1.3.10",
"gatsby-plugin-manifest": "2.4.18",
"gatsby-plugin-material-ui": "2.1.9",
"gatsby-plugin-mdx": "1.2.25",
"gatsby-plugin-no-sourcemaps": "2.2.0",
"gatsby-plugin-offline": "3.2.17",
"gatsby-plugin-react-helmet": "3.3.10",
"gatsby-plugin-sharp": "2.6.19",
"gatsby-plugin-sitemap": "2.4.11",
"gatsby-remark-copy-linked-files": "2.3.9",
"gatsby-remark-images": "3.3.18",
"gatsby-source-filesystem": "2.3.19",
"gatsby-transformer-remark": "2.8.22",
"gatsby-transformer-sharp": "2.5.11",
"graphql": "14.7.0",
"gray-matter": "4.0.2",
"prism-react-renderer": "1.1.1",
"prismjs": "1.21.0",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-copy-to-clipboard": "5.0.2",
"react-custom-scrollbars": "4.2.1",
"react-dom": "16.13.1",
"react-helmet": "6.1.0",
"react-spring": "8.0.27",
"react-timeago": "4.4.0",
"react-transition-group": "4.4.1",
"remark-slug": "6.0.0",
"saber-plugin-git-modification-time": "0.1.3",
"set-interval-visible": "2.0.0"
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"eslint-config-react-app": "5.2.1",
"gatsby-plugin-eslint": "2.0.8",
"gatsby-plugin-remove-trailing-slashes": "2.3.11",
"prettier": "1.19.1"
},
"license": "Apache-2.0 OR MIT",
"scripts": {
"build": "npm run clean && gatsby build --prefix-paths",
"build:incremental": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages --prefix-paths",
"clean": "gatsby clean",
"develop": "gatsby develop -H 0.0.0.0",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"publish": "npm run build && wrangler publish",
"serve": "gatsby serve",
"start": "npm run develop"
}
}