-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.44 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
{
"name": "mavy-public",
"private": false,
"description": "Blog, portfolio, public site",
"version": "0.1.0",
"author": "Vynohradov Maxim <[email protected]>",
"scripts": {
"build": "npx gatsby build",
"develop": "npx gatsby develop",
"format": "npx prettier --write 'src/**/*.{js,jsx,ts,tsx,json,md}'",
"start": "npm run develop",
"serve": "npx gatsby serve",
"clean": "npx gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"lint:fix": "eslint '*/**/*.{js,ts,tsx}' --fix",
"lint:fix:quite": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"deploy": "gatsby build && gh-pages -d public"
},
"dependencies": {
"@deckdeckgo/highlight-code": "^2.1.0",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@mdx-js/mdx": "^1.6.16",
"@mdx-js/react": "^1.6.16",
"babel-plugin-styled-components": "^1.11.1",
"dayjs": "^1.8.36",
"dotenv": "^8.2.0",
"gatsby": "^2.24.26",
"gatsby-image": "^2.4.21",
"gatsby-plugin-google-analytics": "^2.3.18",
"gatsby-plugin-manifest": "^2.4.22",
"gatsby-plugin-mdx": "^1.2.5",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-robots-txt": "^1.5.3",
"gatsby-plugin-sentry": "^1.0.1",
"gatsby-plugin-sharp": "^2.6.25",
"gatsby-plugin-sitemap": "^2.4.17",
"gatsby-plugin-styled-components": "^3.3.10",
"gatsby-remark-highlight-code": "^2.1.0",
"gatsby-remark-images": "^3.3.25",
"gatsby-source-filesystem": "^2.3.24",
"gatsby-transformer-sharp": "^2.5.12",
"gitalk": "^1.6.2",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-scroll-up": "^1.3.5",
"react-share": "^4.3.1",
"react-to-print": "^2.10.3",
"reading-time": "^1.2.0",
"remark-emoji": "^2.1.0",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@types/mdx-js__react": "^1.5.3",
"@types/node": "^14.0.27",
"@types/react": "^16.9.45",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.1.0",
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-simple-import-sort": "^5.0.3",
"gh-pages": "^3.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.0.5",
"typescript": "^3.9.7"
},
"keywords": [
"gatsby",
"blog",
"portfolio",
"art",
"resume"
],
"repository": {
"type": "git",
"url": "https://github.com/MaxVynohradov/maxvynohradov.github.io"
},
"bugs": {
"url": "https://github.com/MaxVynohradov/maxvynohradov.github.io/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn lint:fix",
"git add"
]
}
}