forked from cloudflare/workers-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.09 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-workers-docs",
"version": "1.0.0",
"description": "Cloudflare Workers developer docs",
"license": "Apache-2.0 OR MIT",
"main": "workers-site/index.js",
"private": true,
"scripts": {
"build": "gatsby clean && gatsby build --prefix-paths",
"postbuild": "bin/postbuild",
"clean": "gatsby clean",
"develop": "gatsby develop -p 1313",
"start": "npm run develop",
"worker-build": "npm run build && wrangler build",
"worker-start": "npm run build && wrangler preview --watch -e staging",
"worker-test": "ava workers-site/test/index.js --verbose",
"publish": "npm run build && wrangler publish -e",
"format": "prettier --write \"**/*.{js,jsx,json,md}\""
},
"dependencies": {
"@mdx-js/mdx": "^1.5.8",
"@mdx-js/react": "^1.5.8",
"@types/lodash.debounce": "^4.0.6",
"@types/lunr": "^2.3.2",
"@types/marked": "^0.7.3",
"@types/mdx-js__react": "^1.5.1",
"@types/react-copy-to-clipboard": "^4.3.0",
"gatsby": "^2.20.9",
"gatsby-image": "^2.3.1",
"gatsby-plugin-copy-files": "^1.0.3",
"gatsby-plugin-feed-mdx": "^1.0.0",
"gatsby-plugin-manifest": "^2.3.3",
"gatsby-plugin-mdx": "^1.1.4",
"gatsby-plugin-offline": "^3.1.2",
"gatsby-plugin-react-helmet": "^3.2.1",
"gatsby-plugin-sharp": "^2.5.3",
"gatsby-plugin-typescript": "^2.3.1",
"gatsby-plugin-typography": "^2.4.1",
"gatsby-source-filesystem": "^2.2.2",
"gatsby-source-rest-api": "^0.2.3",
"lodash.debounce": "^4.0.8",
"lunr": "^2.3.8",
"marked": "^0.8.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-typography": "^0.16.19",
"typography": "^0.16.19"
},
"ava": {
"require": [
"esm"
]
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@types/node": "^12.12.32",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.5",
"@types/react-helmet": "^5.0.14",
"ava": "^2.4.0",
"glob": "^7.1.6",
"prettier": "^1.18.2"
},
"keywords": [
"gatsby"
]
}