-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.1 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
{
"name": "worldwildweb.dev",
"version": "1.0.0",
"description": "Georgi Marokov's Blog",
"main": "index.js",
"scripts": {
"develop": "gatsby develop",
"clean": "gatsby clean",
"start": "gatsby develop",
"build": "gatsby build && yarn robots",
"serve": "gatsby serve",
"robots": "cp robots.txt public/",
"prettier": "prettier --config ./.prettierrc.js --ignore-path ./.prettierignore --write \"**/*.{json,js,ts,tsx,mdx}\"",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"**/*.{jsx,tsx,ts,js,json,mdx}": [
"npm run prettier",
"git add"
]
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmarokov/worldwildweb.dev.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gmarokov/worldwildweb.dev.git"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@typeform/embed-react": "^3.2.0",
"cmdk": "^0.1.18",
"gatsby": "^5.9.1",
"gatsby-plugin-feed-mdx": "^1.1.0",
"gatsby-plugin-google-gtag": "^5.12.3",
"gatsby-plugin-image": "^3.0.0",
"gatsby-plugin-mdx": "^3.20.0",
"gatsby-plugin-mdx-embed": "^1.0.0",
"gatsby-plugin-netlify": "^5.1.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-sharp": "^5.8.1",
"gatsby-plugin-sitemap": "^6.0.0",
"gatsby-source-filesystem": "^5.0.0",
"gatsby-transformer-json": "^5.0.0",
"gatsby-transformer-sharp": "^5.0.0",
"mdx-embed": "^1.0.0",
"prism-react-renderer": "^1.3.5",
"react": "18.0.0",
"react-dom": "18.0.0",
"rehype-autolink-headings": "6.1.1",
"rehype-slug": "5.0.1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@tailwindcss/typography": "^0.5.4",
"autoprefixer": "^10.4.7",
"gatsby-plugin-postcss": "^6.0.0",
"husky": "^7.0.1",
"lint-staged": "^15.0.2",
"postcss": "^8.4.31",
"prettier": "^2.3.2",
"prop-types": "^15.8.1",
"tailwindcss": "^3.1.6"
}
}