-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
52 lines (52 loc) · 1.64 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
{
"name": "gatsby-starter-infinite-scroll",
"private": true,
"description": "Infinite Scroll and Pagination with Gatsby",
"version": "1.0.0",
"author": "Baobab Koodaa <[email protected]>",
"dependencies": {
"es6-promise": "^4.2.8",
"gatsby": "^4.18.2",
"gatsby-image": "^2.2.18",
"gatsby-plugin-manifest": "^4.18.1",
"gatsby-plugin-offline": "^5.18.1",
"gatsby-plugin-react-helmet": "^5.18.0",
"gatsby-plugin-sharp": "^4.18.1",
"gatsby-plugin-styled-jsx": "^5.18.0",
"gatsby-plugin-typescript": "^4.18.1",
"gatsby-source-filesystem": "^4.18.1",
"gatsby-transformer-sharp": "^4.18.1",
"lodash.throttle": "^4.1.1",
"node-fetch": "^3.2.9",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-icons": "^4.4.0",
"styled-jsx": "^3.0.2",
"typeface-open-sans": "1.1.13"
},
"devDependencies": {
"prettier": "^2.7.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"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\"",
"fetchUnsplash": "node scripts/fetchUnsplash.js"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}