-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
73 lines (73 loc) · 2.16 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
{
"name": "gatsby-strapi-starter",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "1.0.0",
"author": "Jeremy Lynch",
"dependencies": {
"babel-plugin-styled-components": "^1.12.0",
"bootstrap": "^4.5.3",
"gatsby": "^3.0.3",
"gatsby-image": "^3.0.0",
"gatsby-plugin-facebook-pixel": "^1.0.5",
"gatsby-plugin-google-tagmanager": "^3.0.0",
"gatsby-plugin-manifest": "^3.0.0",
"gatsby-plugin-netlify": "^3.0.0",
"gatsby-plugin-offline": "^4.0.0",
"gatsby-plugin-preact": "^5.5.0",
"gatsby-plugin-react-helmet": "^4.0.0",
"gatsby-plugin-robots-txt": "^1.5.5",
"gatsby-plugin-sass": "^4.0.2",
"gatsby-plugin-sharp": "^3.0.1",
"gatsby-plugin-sitemap": "^3.0.0",
"gatsby-plugin-styled-components": "^4.0.0",
"gatsby-source-filesystem": "^3.0.0",
"gatsby-transformer-sharp": "3.0.0",
"node-sass": "^5.0.0",
"preact": "^10.5.13",
"preact-render-to-string": "^5.1.19",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-icons": "^4.2.0",
"react-is": "^17.0.1",
"react-number-format": "^4.4.4",
"react-slick": "^0.28.0",
"reactstrap": "^8.8.1",
"reactstrap-form-fields": "^1.0.8",
"reactstrap-json-nav": "^1.0.2",
"slick-carousel": "^1.8.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"lint": "eslint src",
"reformat": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"engines": {
"node": ">=12.13.0"
}
}