-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.49 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
{
"name": "Dream.Code.Sleep.Repeat.",
"private": true,
"description": "Personal website & blog of Powell Ye",
"version": "3.2.0",
"author": "Pavel Yermolin <oatto.paul@gmail.com>",
"scripts": {
"build": "gatsby clean && gatsby build",
"start": "gatsby clean && gatsby develop",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\"",
"deploy": "npm run build && npx gh-pages -d public -b master"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{json,md,mdx}": [
"prettier --write",
"git add"
],
"**/*.{js,jsx}": [
"npx eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@emotion/core": "^10.0.14",
"@emotion/styled": "^10.0.14",
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-brands-svg-icons": "^5.9.0",
"@fortawesome/free-regular-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"@mdx-js/mdx": "^1.0.21",
"@mdx-js/react": "^1.0.21",
"@reach/router": "^1.3.4",
"gatsby": "^2.9.8",
"gatsby-image": "^2.2.4",
"gatsby-mdx": "^0.6.3",
"gatsby-plugin-emotion": "^4.1.0",
"gatsby-plugin-manifest": "^2.2.1",
"gatsby-plugin-offline": "^2.2.1",
"gatsby-plugin-react-helmet": "^3.1.2",
"gatsby-plugin-sharp": "^2.2.3",
"gatsby-remark-images": "^3.0.16",
"gatsby-source-filesystem": "^2.1.2",
"gatsby-transformer-sharp": "^2.2.1",
"gsap": "^2.1.3",
"normalize.css": "^8.0.1",
"posthog-js": "^1.88.1",
"prism-react-renderer": "^0.1.7",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"three": "^0.155.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.3",
"@commitlint/config-conventional": "^7.5.0",
"@types/three": "^0.155.1",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"gatsby-cli": "^2.7.8",
"gh-pages": "^2.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.19.1"
},
"keywords": [
"gatsby",
"blog",
"personal-website"
],
"engines": {
"node": ">=10.0.0 <11.0.0"
}
}