-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 3.46 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
{
"name": "personal-site-fin-mavis",
"private": true,
"description": "A Personal site Fin Mavis",
"version": "0.1.0",
"author": "Fin Mavis <fin.mavis@yahoo.com>",
"engines": {
"node": ">=18.16.0"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@use-it/event-listener": "^0.1.7",
"gatsby": "^5.10.0",
"gatsby-plugin-catch-links": "^5.10.0",
"gatsby-plugin-emotion": "^8.10.0",
"gatsby-plugin-google-gtag": "^5.10.0",
"gatsby-plugin-image": "^3.10.0",
"gatsby-plugin-layout": "^4.10.0",
"gatsby-plugin-manifest": "^5.10.0",
"gatsby-plugin-offline": "^6.10.0",
"gatsby-plugin-react-helmet": "^6.10.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-root-import": "^2.0.9",
"gatsby-plugin-sharp": "^5.10.0",
"gatsby-plugin-sitemap": "^6.10.0",
"gatsby-plugin-typography": "^5.10.0",
"gatsby-plugin-use-dark-mode": "^2.0.1",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^7.10.0",
"gatsby-remark-prismjs": "^7.10.0",
"gatsby-remark-relative-images": "^2.0.5",
"gatsby-source-filesystem": "^5.10.0",
"gatsby-transformer-remark": "^6.10.0",
"gatsby-transformer-sharp": "^5.10.0",
"overlayscrollbars": "^2.2.0",
"overlayscrollbars-react": "^0.5.0",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-share": "^4.4.1",
"react-typography": "^0.16.23",
"typography": "^0.16.21",
"typography-theme-fairy-gates": "^0.16.19",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@types/node": "^20.2.5",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@types/typography": "^0.16.4",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"dotenv": "^16.1.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"keywords": [
"Aris Rinardi",
"Fin Mavis",
"Web Developer",
"Frontend Developer"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "cross-env GATSBY_GRAPHQL_IDE=playground gatsby develop",
"start": "cross-env GATSBY_ACTIVE_ENV=local npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier \"src/**/*.{js,jsx,json,css,scss,md}\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"validate": "npm run check-format && npm run lint",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/finmavis/personal-site"
},
"bugs": {
"url": "https://github.com/finmavis/personal-site/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"npm run lint"
],
"**/*.{js,jsx,json,css,scss,md,mdx}": [
"npm run format"
]
}
}