forked from taniarascia/taniarascia.com
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 2.52 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
{
"name": "calvin.me",
"description": "Personal website running on Gatsby, React, and Node.js.",
"version": "3.0.0",
"author": "Calvin Bui",
"repository": "git@github.com:calvinbui/calvin.me",
"dependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-react": "^7.23.3",
"gatsby": "^5.13.3",
"gatsby-cli": "^5.13.2",
"gatsby-plugin-catch-links": "^5.13.1",
"gatsby-plugin-feed": "^5.13.1",
"gatsby-plugin-image": "^3.13.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-netlify": "^5.1.1",
"gatsby-plugin-nprogress": "^5.13.1",
"gatsby-plugin-offline": "^6.13.1",
"gatsby-plugin-page-progress": "^2.2.1",
"gatsby-plugin-sass": "^6.13.1",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-plugin-sitemap": "6.13.1",
"gatsby-plugin-twitter": "^5.13.1",
"gatsby-plugin-umami": "^0.1.5",
"gatsby-remark-autolink-headers": "^6.13.1",
"gatsby-remark-copy-linked-files": "^6.13.1",
"gatsby-remark-images": "7.13.1",
"gatsby-remark-prismjs": "7.13.1",
"gatsby-remark-responsive-iframe": "^6.13.1",
"gatsby-remark-table-of-contents": "^2.0.0",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-remark": "6.13.1",
"gatsby-transformer-sharp": "^5.13.1",
"lodash.kebabcase": "^4.1.1",
"moment": "^2.30.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"sass": "^1.71.1",
"sharp": "^0.33.2",
"smooth-scroll": "^16.1.3",
"url-join": "4.0.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"markdownlint": "^0.33.0",
"markdownlint-cli2": "^0.12.1",
"typescript": "^5.3.3",
"webpack": "^5.90.3"
},
"keywords": [
"calvin bui",
"development",
"dev",
"tutorials",
"tech",
"articles",
"blog"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"dev": "yarn run develop",
"serve": "gatsby serve",
"build": "gatsby build",
"lint:js": "eslint --ext .js,.jsx .",
"lint:md": "markdownlint-cli2 posts/*/*/*.md",
"clean": "rm -rf public .cache"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"packageManager": "yarn@4.1.0"
}