-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
87 lines (87 loc) · 2.82 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
{
"name": "kostasbariotis.com",
"description": "My personal home page",
"private": true,
"dependencies": {
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@react-icons/all-files": "^4.1.0",
"core-js": "^2.6.12",
"dateformat": "^3.0.3",
"disqus-react": "^1.1.5",
"emotion": "^9.2.12",
"emotion-server": "^9.2.12",
"eslint": "^8.4.1",
"eslint-config-prettier": "^2.10.0",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.27.1",
"fontfaceobserver": "^2.1.0",
"gatsby": "^4.3.0",
"gatsby-cli": "^4.3.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-catch-links": "^4.3.0",
"gatsby-plugin-emotion": "^7.3.0",
"gatsby-plugin-feed": "^4.3.0",
"gatsby-plugin-google-gtag": "^5.6.0",
"gatsby-plugin-manifest": "^4.3.0",
"gatsby-plugin-netlify": "^3.14.0",
"gatsby-plugin-nprogress": "^4.3.0",
"gatsby-plugin-offline": "^5.3.0",
"gatsby-plugin-paginate": "^1.12.0",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-sass": "^5.3.0",
"gatsby-plugin-sharp": "^4.3.0",
"gatsby-plugin-sitemap": "^5.3.0",
"gatsby-plugin-typography": "^4.3.0",
"gatsby-remark-autolink-headers": "^5.3.0",
"gatsby-remark-copy-linked-files": "^5.3.0",
"gatsby-remark-emoji": "^0.0.3",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-graph": "^0.2.6",
"gatsby-remark-images": "^2.0.6",
"gatsby-remark-prismjs": "^6.3.0",
"gatsby-source-filesystem": "^4.3.0",
"gatsby-transformer-remark": "^5.3.0",
"gatsby-transformer-sharp": "^4.3.0",
"gh-pages": "^1.2.0",
"graphql": "^15.8.0",
"husky": "^0.14.3",
"lint-staged": "^7.3.0",
"npm": "^6.14.15",
"prettier": "^1.19.1",
"prismjs": "^1.25.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-burger-menu": "^3.0.6",
"react-disqus-comments": "git+https://github.com/theplatapi/react-disqus-thread.git",
"react-dom": "^17.0.2",
"react-flexbox-grid": "^2.1.2",
"react-helmet": "^6.1.0",
"react-icons": "^4.3.1",
"react-router-scroll": "github:ytase/react-router-scroll#build",
"react-share": "^4.4.0",
"react-typography": "^0.16.20",
"rimraf": "^2.7.1",
"typography": "^0.16.21",
"url": "^0.11.0",
"uuid": "^3.4.0",
"webpack": "^5.65.0"
},
"scripts": {
"build": "gatsby build --prefix-paths",
"deploy": "gh-pages -d public",
"develop": "gatsby develop",
"preserve": "npm run build",
"serve": "gatsby serve",
"start": "npm run develop",
"lint": "./node_modules/.bin/eslint --fix src/**/*.js gatsby-config.js gatsby-browser.js gatsby-node.js",
"test": "echo \"Should probably write some tests!\"",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx}": [
"./node_modules/.bin/eslint --fix",
"git add"
]
}
}