-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.42 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
{
"name": "hustle-dev-blog",
"version": "1.0.0",
"private": true,
"description": "hustle-dev-blog",
"keywords": [
"gatsby"
],
"scripts": {
"lint:pt": "prettier --write \"${*}**/*.{ts,tsx,json}\"",
"lint:es": "eslint --ext .ts,.tsx,.js --fix .",
"lint": "yarn lint:pt && yarn lint:es",
"start": "gatsby develop",
"build": "gatsby build && cp googlefa45382bebc74ed3.html public/",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "yarn clean && yarn build && gh-pages -d public",
"convert": "node scripts/issue-to-md.js",
"typecheck": "tsc --noEmit",
"postinstall": "husky install"
},
"lint-staged": {
"*.json": [
"prettier --cache --write"
],
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --config ./.prettierrc --cache --write"
]
},
"dependencies": {
"@isamrish/gatsby-plugin-google-adsense": "^1.2.0",
"axios": "^1.4.0",
"clsx": "^2.0.0",
"gatsby": "^5.8.0",
"gatsby-plugin-advanced-sitemap-v5": "^2.1.12",
"gatsby-plugin-feed": "^5.8.0",
"gatsby-plugin-google-gtag": "^5.8.0",
"gatsby-plugin-image": "^3.8.0",
"gatsby-plugin-manifest": "^5.8.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sass": "^6.12.3",
"gatsby-plugin-sharp": "^5.8.0",
"gatsby-remark-autolink-headers": "^6.8.0",
"gatsby-remark-images": "^7.8.0",
"gatsby-remark-prismjs": "^7.8.0",
"gatsby-source-filesystem": "^5.8.0",
"gatsby-transformer-remark": "^6.8.0",
"gatsby-transformer-sharp": "^5.8.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.69.5",
"svg-react-loader": "^0.4.6",
"ts-pattern": "^5.0.0"
},
"devDependencies": {
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"gh-pages": "^6.0.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.0",
"prettier": "^2.8.8",
"typescript": "^5.0.0"
},
"packageManager": "[email protected]"
}