-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 3.78 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
112
113
114
115
116
{
"name": "personal-blog",
"private": true,
"description": "My personal blog.",
"version": "0.1.0",
"author": "ayan4m1 <[email protected]>",
"homepage": "https://andrewdelisa.com",
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "[email protected]:ayan4m1/personal-blog.git"
},
"scripts": {
"build": "node split.mjs && gatsby build",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "gatsby develop",
"serve": "gatsby serve",
"lint": "npm run lint:js && npm run lint:scss && npm run lint:markdown",
"lint:js": "eslint ./src/**/*.js",
"lint:scss": "stylelint ./src/**/*.scss",
"lint:markdown": "markdownlint ./articles/**/*.md",
"prepare": "husky"
},
"dependencies": {
"@ayan4m1/gatsby-plugin-root-import": "^2.0.10",
"@babel/core": "^7.26.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/pro-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mdx-js/react": "^2.3.0",
"@react-spring/web": "^9.7.5",
"bootstrap": "^5.3.3",
"bootswatch": "^5.3.3",
"classnames": "^2.5.1",
"color-diff": "^1.4.0",
"color-namer": "^1.4.0",
"convert-units": "^3.0.0-beta.6",
"d3-color": "^3.1.0",
"d3-interpolate": "^3.0.1",
"d3-scale-chromatic": "^3.1.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"formik": "^2.4.6",
"gatsby": "^5.14.0",
"gatsby-plugin-eslint": "^4.0.4",
"gatsby-plugin-gtag": "^1.0.13",
"gatsby-plugin-image": "^3.14.0",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-mdx": "^5.14.0",
"gatsby-plugin-offline": "^6.14.0",
"gatsby-plugin-react-helmet": "^6.14.0",
"gatsby-plugin-sass": "^6.14.0",
"gatsby-plugin-sharp": "^5.14.0",
"gatsby-plugin-sitemap": "^6.14.0",
"gatsby-remark-autolink-headers": "^6.14.0",
"gatsby-remark-classes": "^1.0.2",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^7.14.0",
"gatsby-remark-numbered-footnotes": "^1.0.1",
"gatsby-remark-prismjs": "^7.14.0",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-transformer-json": "^5.14.0",
"gatsby-transformer-remark": "^6.14.0",
"gatsby-transformer-sharp": "^5.14.0",
"gatsby-transformer-source-code": "^0.1.2",
"get-rgba-palette": "^2.0.1",
"graphql": "^16.9.0",
"lodash-es": "^4.17.21",
"papaparse": "^5.4.1",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-bootstrap": "^2.10.5",
"react-color": "^2.19.3",
"react-confetti": "^6.1.0",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-markdown": "^9.0.1",
"react-snowfall": "^2.1.1",
"react-use": "^17.5.1",
"sass": "^1.81.0",
"sharp": "^0.33.5",
"sudoku-gen": "^1.0.2",
"two.js": "^0.8.14",
"use-local-storage-state": "^19.5.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@eslint/js": "^9.15.0",
"@typescript-eslint/parser": "^8.14.0",
"babel-plugin-prismjs": "^2.1.0",
"babel-preset-gatsby": "^3.14.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import-x": "^4.4.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-webpack-plugin": "^4.2.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"markdownlint-cli": "^0.42.0",
"postcss": "^8.4.49",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1"
}
}