-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.08 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
{
"name": "personal-site-v2",
"description": "Anson Heung's Personal Website v2",
"version": "1.0.0",
"author": "Anson Heung <ansonheung2000@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/AnsonH/personal-site-v2"
},
"license": "MIT",
"scripts": {
"build": "export SET NODE_OPTIONS=--openssl-legacy-provider && gatsby build",
"develop": "export SET NODE_OPTIONS=--openssl-legacy-provider && gatsby develop -H 0.0.0.0",
"start": "yarn run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "prettier --write **/*.{js,jsx,ts,tsx,json,md}",
"lint": "eslint ./src/**/*.{js,jsx} --fix",
"prepare": "husky install"
},
"dependencies": {
"babel-plugin-styled-components": "^1.13.2",
"dayjs": "^1.10.8",
"gatsby": "3.10.2",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-google-gtag": "^3.14.0",
"gatsby-plugin-image": "^1.12.0",
"gatsby-plugin-manifest": "^3.11.0",
"gatsby-plugin-react-helmet": "^4.11.0",
"gatsby-plugin-robots-txt": "^1.6.9",
"gatsby-plugin-sharp": "^3.12.0",
"gatsby-plugin-sitemap": "^4.8.0",
"gatsby-plugin-styled-components": "^4.11.0",
"gatsby-remark-default-html-attrs": "^1.0.1",
"gatsby-source-filesystem": "^3.11.0",
"gatsby-transformer-remark": "^4.9.0",
"gatsby-transformer-sharp": "^3.12.0",
"hamburger-react": "^2.4.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-icons": "^4.9.0",
"react-transition-group": "^4.4.2",
"react-typist": "^2.0.5",
"scrollreveal": "^4.0.9",
"styled-components": "^5.3.0"
},
"devDependencies": {
"babel-preset-gatsby": "^1.11.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "2.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
],
"**/*.{js,jsx}": [
"eslint --fix"
]
}
}