-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.55 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
{
"name": "gatsby-starter-apollo-lambda",
"description": "boilerplate for building an app using Gatsby and Apollo",
"version": "0.0.1",
"license": "MIT",
"homepage": "https://www.gatsby-starter-apollo-lambda.netlify.com",
"repository": "https://github.com/mrozilla/gatsby-starter-apollo-lambda",
"bugs": "https://github.com/mrozilla/gatsby-starter-apollo-lambda/issues",
"author": "Jan Hruby <[email protected]>",
"dependencies": {
"@apollo/react-hooks": "^3.1.2",
"@mdx-js/mdx": "^1.5.1",
"@mdx-js/react": "^1.5.1",
"@reach/router": "^1.2.1",
"apollo-boost": "^0.4.4",
"gatsby": "2.15.29",
"gatsby-plugin-google-analytics": "2.1.20",
"gatsby-plugin-manifest": "2.2.20",
"gatsby-plugin-mdx": "^1.0.47",
"gatsby-plugin-netlify": "2.1.17",
"gatsby-plugin-netlify-cms": "^4.1.22",
"gatsby-plugin-react-helmet": "3.1.10",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sharp": "2.2.28",
"gatsby-plugin-sitemap": "2.2.16",
"gatsby-plugin-styled-components": "3.1.8",
"gatsby-remark-images": "3.1.25",
"gatsby-remark-relative-images": "^0.2.3",
"gatsby-source-filesystem": "2.1.29",
"gatsby-transformer-sharp": "^2.2.20",
"i18next": "^17.0.18",
"lodash": "^4.17.15",
"netlify-cms-app": "^2.9.7",
"netlify-cms-backend-fs": "0.4.4",
"prop-types": "^15.7.2",
"query-string": "^6.8.3",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-helmet": "^5.2.1",
"react-i18next": "^10.13.1",
"react-icons": "^3.7.0",
"styled-components": "^4.4.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-plugin-styled-components": "^1.10.6",
"deep-map": "^2.0.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"prettier": "^1.18.2"
},
"scripts": {
"start:gatsby": "gatsby develop",
"start": "yarn start:gatsby",
"build:gatsby": "gatsby build",
"prebuild": "cd lambda && yarn install",
"build": "yarn build:gatsby",
"serve": "gatsby serve",
"lint": "eslint 'src/**/*.js'",
"bump": "yarn upgrade-interactive --latest",
"bump:lambda": "cd lambda && yarn bump && cd ..",
"purge": "rm -rf node_modules && yarn"
}
}