-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.4 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
105
106
107
108
109
110
111
{
"name": "blog-diego-costa",
"private": true,
"version": "0.2.0",
"author": "Diego Costa <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/diegocosta/diegocosta.me.git"
},
"dependencies": {
"@deckdeckgo/highlight-code": "^4.4.0",
"downshift": "9.0.8",
"fuse.js": "^7.0.0",
"gatsby": "^5.14.0",
"gatsby-plugin-eslint": "^4.0.4",
"gatsby-plugin-google-analytics": "^5.14.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-image": "3.14.0",
"gatsby-plugin-react-helmet": "6.14.0",
"gatsby-plugin-sharp": "^5.14.0",
"gatsby-plugin-styled-components": "6.14.0",
"gatsby-plugin-typescript": "^5.14.0",
"gatsby-remark-copy-linked-files": "6.14.0",
"gatsby-remark-highlight-code": "^3.3.0",
"gatsby-remark-images": "7.14.0",
"gatsby-remark-responsive-iframe": "6.14.0",
"gatsby-remark-smartypants": "6.14.0",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-transformer-remark": "6.14.0",
"gatsby-transformer-sharp": "^5.14.0",
"kbar": "^0.1.0-beta.45",
"lodash.kebabcase": "^4.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-icons": "^5.4.0",
"reading-time": "^1.5.0",
"rss-parser": "^3.13.0",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.16.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "^16.1.0",
"@types/lodash.kebabcase": "^4.1.9",
"@types/node": "22.10.1",
"@types/react": "19.0.1",
"@types/react-dom": "^19.0.1",
"@types/react-helmet": "^6.1.11",
"@types/styled-components": "5.1.34",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"babel-eslint": "^10.1.0",
"babel-jest": "29.7.0",
"babel-plugin-styled-components": "^2.1.4",
"babel-preset-gatsby": "3.14.0",
"eslint": "9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-webpack-plugin": "^4.2.0",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-tsconfig-paths": "^1.0.6",
"globals": "^15.13.0",
"husky": "9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-styled-components": "7.2.0",
"lint-staged": "^15.2.10",
"postcss": "^8.4.49",
"postcss-jsx": "^0.36.4",
"postcss-syntax": "^0.36.2",
"prettier": "3.4.2",
"react-test-renderer": "^19.0.0",
"stylelint": "^16.11.0",
"stylelint-config-recommended": "^14.0.1",
"typescript": "^5.7.2"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"prettier": "prettier --write .",
"serve": "gatsby serve",
"clean": "gatsby clean",
"restart": "yarn clean && yarn start",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"stylelint": "stylelint src --fix",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"yarn lint",
"yarn stylelint",
"yarn prettier"
]
},
"overrides": {
"gatsby-remark-highlight-code": {
"@deckdeckgo/highlight-code": "^4.4.0"
}
}
}