-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.33 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
{
"name": "meltano",
"private": true,
"description": "A starter for a blog powered by Gatsby and Markdown",
"version": "1.0.0",
"author": "Kyle Mathews <[email protected]> and Tyler Barnes <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme",
"keywords": [
"gatsby"
],
"license": "0BSD",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbyjs/gatsby-starter-blog.git"
},
"scripts": {
"build": "NODE_OPTIONS=\"--max_old_space_size=4096\" gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"eslintConfig": {
"extends": [
"wesbos"
],
"rules": {
"react/prop-types": 0
}
},
"dependencies": {
"dotenv": "^16.0.3",
"flexsearch": "^0.7.31",
"gatsby": "^5.8.0",
"gatsby-plugin-google-gtag": "^5.14.0",
"gatsby-plugin-google-tagmanager": "^5.10.0",
"gatsby-plugin-image": "^3.8.0",
"gatsby-plugin-local-search": "^2.0.1",
"gatsby-plugin-manifest": "^5.8.0",
"gatsby-plugin-offline": "^6.8.0",
"gatsby-plugin-react-helmet": "^6.8.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-sharp": "^5.8.0",
"gatsby-source-filesystem": "^5.8.0",
"gatsby-source-wordpress": "^7.12.1",
"gatsby-transformer-sharp": "^5.8.0",
"gsap": "^3.12.5",
"html-react-parser": "^3.0.15",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"postcss": "^8.4.21",
"prism-react-renderer": "^2.0.5",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-hubspot-form": "^1.3.7",
"react-inlinesvg": "^3.0.2",
"react-modal": "^3.16.1",
"react-scroll-parallax": "^3.4.2",
"react-tabs": "^6.0.0",
"react-use-flexsearch": "^0.1.1",
"swiper": "^9.2.0"
},
"devDependencies": {
"dumper.js": "^1.3.1",
"eslint": "^8.37.0",
"eslint-config-wesbos": "^3.2.3",
"prettier": "^2.8.7",
"typescript": "^4.9.5"
}
}