forked from aptible/www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.87 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
{
"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 -p 8001",
"format": "prettier --write 'src/**/*.js'",
"start": "yarn run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"prepare": "husky install"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^13.2.0",
"axios": "^0.21.2",
"classnames": "^2.2.6",
"gatsby": "2.24.73",
"gatsby-plugin-favicon": "^3.1.6",
"gatsby-plugin-matomo": "^0.13.0",
"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": "3.1.3",
"gatsby-source-filesystem": "2.5.0",
"gatsby-source-git": "^1.1.0",
"gatsby-transformer-remark": "^2.3.8",
"gatsby-transformer-yaml": "^2.1.10",
"markdown-it": "^12.3.2",
"postcss-preset-env": "^6.6.0",
"query-string": "^7.0.1",
"react": "^16.8.4",
"react-compound-slider": "^2.0.0",
"react-dom": "^16.8.4",
"react-helmet": "^5.2.1",
"react-markdown": "^4.3.1",
"react-syntax-highlighter": "^13.3.1",
"react-use": "^15.3.3"
},
"devDependencies": {
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^1.16.4"
},
"browserslist": "last 1 version and not dead and > 0.2%",
"lint-staged": {
"*.js": "prettier --write"
},
"resolutions": {
"remark-mdx": "1.6.22"
}
}