forked from aptible/www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.49 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
{
"name": "gatsby-starter-hello-world",
"private": true,
"description": "A simplified bare-bones starter for Gatsby",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build-production": "yarn run build && cp _redirects ./public/_redirects && cat _production-redirects >> ./public/_redirects",
"build-staging": "yarn run build && cp _redirects ./public/_redirects && cat _staging-redirects >> ./public/_redirects",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^13.2.0",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"gatsby": "^2.1.30",
"gatsby-plugin-favicon": "^3.1.6",
"gatsby-plugin-portal": "^1.0.7",
"gatsby-plugin-postcss": "^2.0.6",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sitemap": "^2.1.0",
"gatsby-source-contentful": "^2.1.18",
"gatsby-source-filesystem": "^2.0.28",
"gatsby-source-lever": "^2.0.8",
"gatsby-transformer-remark": "^2.3.8",
"gatsby-transformer-yaml": "^2.1.10",
"react": "^16.8.4",
"react-compound-slider": "^2.0.0",
"react-dom": "^16.8.4",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"postcss-preset-env": "^6.6.0",
"prettier": "^1.16.4"
},
"browserslist": "last 1 version and not dead and > 0.2%"
}