-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.97 KB
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
{
"name": "samchang.design",
"description": "Sam's site",
"version": "1.0.0",
"author": "Sam Chang <samuel8chang@gmail.com>",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.10.5",
"@fastly/performance-observer-polyfill": "^2.0.0",
"@vercel/analytics": "^1.4.1",
"a11y-react-emoji": "^1.2.0",
"color-thief-browser": "^2.0.1",
"emotion": "^11.0.0",
"emotion-server": "^11.0.0",
"gatsby": "^5.3.2",
"gatsby-image": "^3.11.0",
"gatsby-plugin-catch-links": "^5.3.0",
"gatsby-plugin-emotion": "^8.14.0",
"gatsby-plugin-google-analytics": "^5.3.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-image": "^3.14.0",
"gatsby-plugin-manifest": "^5.3.1",
"gatsby-plugin-react-helmet": "^6.14.0",
"gatsby-plugin-sharp": "^5.14.0",
"gatsby-plugin-tslint": "^0.0.2",
"gatsby-plugin-typescript": "^5.3.1",
"gatsby-plugin-vercel": "^1.0.4",
"gatsby-remark-autolink-headers": "^6.14.0",
"gatsby-remark-copy-linked-files": "^6.3.0",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^7.14.0",
"gatsby-remark-images-medium-zoom": "^1.7.0",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-source-notion-api": "^0.12.0",
"gatsby-transformer-json": "^5.3.0",
"gatsby-transformer-remark": "^6.14.0",
"gatsby-transformer-sharp": "^5.14.0",
"joi": "^17.7.0",
"mem": "^9.0.2",
"node-fetch": "^2.7.0",
"openai": "^4.104.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"rehype-react": "^7.1.1",
"serialize-javascript": "^6.0.2",
"set-value": "^4.1.0",
"sharp": "^0.34.5",
"throttle-debounce": "^5.0.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "gatsby serve",
"install": "yarn install --ignore-scripts || true",
"postinstall": "node scripts/fix-sharp.js || true",
"type-check": "tsc --noEmit",
"lint": "tslint --project .",
"test": "jest && node tests/validate-content.js"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^15.0.5",
"@types/jest": "^29.5.0",
"@types/qs": "^6.14.0",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.11",
"@types/throttle-debounce": "^5.0.2",
"dotenv": "^17.0.1",
"husky": "^7.0.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^30.0.4",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"ts-jest": "^29.1.0",
"tslint": "^6.1.3",
"tslint-loader": "^3.5.4",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
}
}