-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.35 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": "john-kurkowski.github.io",
"version": "1.0.0",
"description": "Source for https://johnkurkowski.com.",
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
"prepare": "husky",
"serve": "gatsby serve --host 0.0.0.0",
"start": "gatsby develop --host 0.0.0.0",
"test": "eslint . && stylelint $(git ls-files '*.css') && prettier --check . && npm run type-check",
"type-check": "tsc --pretty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/john-kurkowski/john-kurkowski.github.io.git"
},
"author": "John Kurkowski <[email protected]> (https://johnkurkowski.com/)",
"license": "UNLICENSED",
"private": true,
"homepage": "https://github.com/john-kurkowski/john-kurkowski.github.io#readme",
"dependencies": {
"autoprefixer": "^10.4.20",
"gatsby": "^5.14.0",
"gatsby-plugin-catch-links": "^5.14.0",
"gatsby-plugin-feed": "^5.14.0",
"gatsby-plugin-google-gtag": "^5.14.0",
"gatsby-plugin-mdx": "^5.14.0",
"gatsby-plugin-postcss": "^6.14.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-root-import": "^2.0.9",
"gatsby-plugin-sitemap": "^6.14.0",
"gatsby-remark-copy-linked-files": "^6.14.0",
"gatsby-remark-prismjs": "^7.14.0",
"gatsby-remark-smartypants": "^6.14.0",
"gatsby-source-filesystem": "^5.14.0",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark-gfm": "^3.0.1",
"tailwindcss": "^3.4.14"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"husky": "^9.1.6",
"lost-pixel": "^3.21.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.6.3"
},
"lint-staged": {
"*.css": [
"stylelint --fix",
"prettier --write"
],
"*.{js,jsx,mjs,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,md,yml}": [
"prettier --write"
]
},
"volta": {
"node": "20.17.0",
"npm": "10.8.3"
}
}