-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.85 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
{
"name": "gatsby-starter-simple",
"private": true,
"description": "Simple Gatsby starter for a small static site. Replaces Prettier with ESLint (AirBnB style), and adds TypeScript and Firebase hosting.",
"version": "0.1.0",
"author": "Rick Kleinhans <[email protected]>",
"dependencies": {
"gatsby": "^2.19.7",
"gatsby-image": "^2.2.39",
"gatsby-plugin-manifest": "^2.2.39",
"gatsby-plugin-offline": "^3.0.32",
"gatsby-plugin-react-helmet": "^3.1.21",
"gatsby-plugin-sharp": "^2.4.3",
"gatsby-plugin-twitter": "^2.2.1",
"gatsby-plugin-typescript": "^2.3.0",
"gatsby-source-filesystem": "^2.2.4",
"gatsby-transformer-remark": "^2.7.3",
"gatsby-transformer-sharp": "^2.3.13",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-icons": "^3.9.0"
},
"devDependencies": {
"@types/node": "^13.9.2",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/react-helmet": "^5.0.15",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"gh-pages": "^3.0.0",
"typescript": "^3.8.3"
},
"scripts": {
"clean": "gatsby clean",
"develop": "gatsby develop",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"build": "gatsby build",
"deploy": "gatsby build && gh-pages -d public -b gh-pages",
"serve": "gatsby serve"
},
"repository": {
"type": "git",
"url": "https://github.com/rickkln/gatsby-starter-simple"
},
"bugs": {
"url": "https://github.com/rickkln/gatsby-starter-simple/issues"
}
}