forked from cloudflare/workers.cloudflare.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.8 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.8 KB
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
{
"name": "workers.cloudflare.com",
"private": true,
"description": "Cloudflare Workers website.",
"version": "0.1.0",
"author": "Kristian Freeman <kristian@cloudflare.com>",
"dependencies": {
"@cloudflare/cloudflare-brand-assets": "4.0.0",
"autoprefixer": "^10.4.14",
"coveo-search-ui": "^2.10096.1",
"focus-visible-polyfill": "^1.0.0",
"gatsby": "^5.11.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-google-tagmanager": "^5.11.0",
"gatsby-plugin-image": "^3.11.0",
"gatsby-plugin-postcss": "^6.11.0",
"gatsby-plugin-react-helmet": "^6.11.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-sharp": "^5.11.0",
"gatsby-plugin-sitemap": "^6.11.0",
"gatsby-source-filesystem": "^5.11.0",
"gatsby-source-sanity": "^7.8.0",
"gatsby-transformer-sharp": "^5.11.0",
"lscache": "^1.3.0",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.1",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-markdown": "^8.0.7",
"twind": "^0.16.19"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.22.7",
"babel-preset-gatsby": "^3.11.0",
"gatsby-plugin-remove-trailing-slashes": "^4.19.0",
"prettier": "^3.0.0",
"tailwindcss": "^3.3.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby clean && gatsby build --prefix-paths",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"",
"publish": "gatsby build && wrangler publish"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudflare/workers.cloudflare.com"
}
}