-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
57 lines (57 loc) · 1.98 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
{
"name": "flexible-gatsby",
"private": true,
"description": "A starter for a paginated blog powered by Gatsby and Markdown",
"version": "1.2.0",
"author": "Kinyanjui Wangonya",
"bugs": {
"url": "https://github.com/wangonya/flexible-gatsby/issues"
},
"dependencies": {
"gatsby": "^5.14.0",
"gatsby-plugin-google-analytics": "^5.13.1",
"gatsby-plugin-image": "^3.13.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-offline": "^6.13.2",
"gatsby-plugin-react-helmet": "^6.13.1",
"gatsby-plugin-sass": "^6.13.1",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-remark-copy-linked-files": "^6.13.1",
"gatsby-remark-images": "^7.13.1",
"gatsby-remark-katex": "^7.13.1",
"gatsby-remark-prismjs": "^7.13.1",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-remark": "^6.13.1",
"gatsby-transformer-sharp": "^5.13.0",
"katex": "^0.13.3",
"lodash": "^4.17.21",
"node-sass": "^9.0.0",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"eslint": "^8.8.0",
"eslint-plugin-react": "^7.34.2",
"prettier": "^3.3.2"
},
"homepage": "https://github.com/wangonya/flexible-gatsby",
"keywords": ["gatsby"],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/wangonya/flexible-gatsby.git"
},
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"develop": "gatsby develop",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\"",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'content/**/*.md'",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js"
}
}