-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 3.37 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "hello-gatsby-starter",
"private": true,
"description": "Hello Gatsby Starter marketing and blog website for Gatsby v4",
"version": "1.0.0",
"author": "Hello Tham <[email protected]>",
"bugs": {
"url": "https://github.com/hellotham/hello-gatsby-starter/issues"
},
"homepage": "https://hello-gatsby-starter.hellotham.com",
"keywords": [
"gatsby",
"typescript",
"MDX",
"Prism",
"TailwindCSS",
"blog"
],
"license": "0BSD",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/hellotham/hello-gatsby-starter.git"
},
"dependencies": {
"@headlessui/react": "^1.4.3",
"@heroicons/react": "^1.0.4",
"@mapbox/rehype-prism": "^0.8.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@sendgrid/mail": "^7.5.0",
"@svgr/webpack": "^6.2.1",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.1",
"gatsby": "^4.6.2",
"gatsby-plugin-feed-mdx": "^1.1.0",
"gatsby-plugin-gatsby-cloud": "^4.6.0",
"gatsby-plugin-image": "^2.6.0",
"gatsby-plugin-manifest": "^4.6.0",
"gatsby-plugin-mdx": "^3.6.0",
"gatsby-plugin-offline": "^5.6.0",
"gatsby-plugin-react-helmet": "^5.6.0",
"gatsby-plugin-react-leaflet": "^3.0.3",
"gatsby-plugin-react-svg": "^3.0.1",
"gatsby-plugin-robots-txt": "^1.7.0",
"gatsby-plugin-sharp": "^4.6.0",
"gatsby-plugin-sitemap": "^5.6.0",
"gatsby-remark-copy-linked-files": "^5.6.0",
"gatsby-remark-images": "^6.6.0",
"gatsby-remark-smartypants": "^5.6.0",
"gatsby-source-filesystem": "^4.6.0",
"gatsby-transformer-sharp": "^4.6.0",
"hero-patterns": "^2.1.0",
"leaflet": "^1.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.25.3",
"react-leaflet": "^3.2.5",
"react-paginate": "^8.1.0",
"react-schemaorg": "^2.0.0",
"react-share": "^4.4.0",
"remark-slug": "^7.0.0",
"schema-dts": "^1.0.0"
},
"devDependencies": {
"@netlify/plugin-gatsby": "^2.0.2",
"@types/leaflet": "^1.7.9",
"@types/mdx-js__react": "^1.5.4",
"@types/node": "^17.0.13",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.10",
"@types/react-helmet": "^6.1.5",
"@types/react-paginate": "^7.1.1",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"autoprefixer": "^10.4.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gatsby-plugin-postcss": "^5.6.0",
"get-graphql-schema": "^2.1.2",
"gh-pages": "^3.2.3",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.18",
"ts-graphql-plugin": "^2.1.4",
"typescript": "^4.5.5"
},
"scripts": {
"build": "gatsby clean; gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"type-check": "tsc --noEmit",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js",
"gen-types": "get-graphql-schema http://localhost:8000/___graphql > schema.graphql; tsgql typegen",
"deploy": "gatsby build && gh-pages -d public -b main"
}
}