forked from gitpod-io/retired-gatsby-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.77 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
{
"name": "gitpod-website",
"description": "Gitpod.io Website",
"version": "1.0.0",
"private": true,
"keywords": [
"gatsby"
],
"main": "n/a",
"scripts": {
"build": "cp -r src/docs/release-notes/* static/release-notes/ && gatsby build && npx netlify-lambda build src/functions",
"clean": "rimraf public",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"dev": "env-cmd -f .env.development gatsby develop",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"lint": "tslint 'src/**/*.{ts,tsx}' -p tsconfig.json",
"start": "npm run dev",
"test": "npm run type-check && npm run lint",
"type-check": "tsc"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"babel-plugin-styled-components": "^1.10.7",
"bowser": "^2.9.0",
"classnames": "^2.2.6",
"env-cmd": "^10.1.0",
"gatsby": "^2.22.12",
"gatsby-image": "^2.4.5",
"gatsby-plugin-algolia-docsearch": "^1.0.5",
"gatsby-plugin-canonical-urls": "^2.3.2",
"gatsby-plugin-catch-links": "^2.3.3",
"gatsby-plugin-emotion": "^4.3.2",
"gatsby-plugin-exclude": "^1.0.2",
"gatsby-plugin-feed": "^2.5.3",
"gatsby-plugin-google-analytics": "^2.3.2",
"gatsby-plugin-react-helmet": "^3.3.2",
"gatsby-plugin-sharp": "^2.6.9",
"gatsby-plugin-sitemap": "^2.4.3",
"gatsby-plugin-typescript": "^2.4.3",
"gatsby-remark-autolink-headers": "^2.3.3",
"gatsby-remark-copy-linked-files": "^2.3.3",
"gatsby-remark-embed-video": "^3.0.10",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^3.3.8",
"gatsby-remark-prismjs": "^3.5.2",
"gatsby-remark-responsive-iframe": "^2.4.3",
"gatsby-remark-smartypants": "^2.3.2",
"gatsby-source-filesystem": "^2.3.8",
"gatsby-transformer-json": "^2.4.3",
"gatsby-transformer-remark": "^2.8.13",
"gatsby-transformer-sharp": "^2.5.3",
"polished": "^3.6.4",
"prism-themes": "^1.4.0",
"prismjs": "^1.20.0",
"react": "^16.13.1",
"react-cookie-consent": "^5.0.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-modal-video": "^1.2.3",
"react-tweet-embed": "^1.2.2",
"typescript": "^3.9.3",
"@sendgrid/mail": "^7.2.6"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.63",
"@types/classnames": "^2.2.10",
"@types/node": "^14.0.6",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.0.0",
"gh-pages": "^3.0.0",
"netlify-cli": "^2.64.1",
"netlify-lambda": "^2.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"tslint": "^6.1.2",
"tslint-config-blvd": "^1.2.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0"
}
}