-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.91 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
{
"private": true,
"name": "atallahsan",
"version": "1.2.0",
"homepage": "/",
"description": "Personal Space",
"author": "Ahmad Atallah",
"license": "MIT",
"dependencies": {
"@browniebroke/gatsby-image-gallery": "^7.0.6",
"@emotion/react": "^11.9.0",
"@mdx-js/mdx": "^1.6.5",
"@mdx-js/react": "^1.6.5",
"@theme-ui/prism": "^0.14.3",
"gatsby": "^4.12.1",
"gatsby-image": "^3.11.0",
"gatsby-omni-font-loader": "^2.0.2",
"gatsby-plugin-catch-links": "^4.12.1",
"gatsby-plugin-feed": "^4.12.1",
"gatsby-plugin-google-analytics": "^4.12.1",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-image": "^2.12.1",
"gatsby-plugin-manifest": "^4.13.0",
"gatsby-plugin-mdx": "^3.12.1",
"gatsby-plugin-react-helmet": "^5.12.1",
"gatsby-plugin-sharp": "^4.12.1",
"gatsby-plugin-theme-ui": "^0.14.3",
"gatsby-plugin-twitter": "^4.12.1",
"gatsby-remark-shiki-twoslash": "^3.0.34",
"gatsby-source-filesystem": "^4.12.1",
"gatsby-source-instagram": "^0.9.0",
"gatsby-transformer-remark": "^5.12.1",
"gatsby-transformer-sharp": "^4.12.1",
"lodash.get": "^4.4.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.10.0",
"remark": "^12.0.0",
"remark-html": "^11.0.2",
"theme-ui": "^0.14.3"
},
"scripts": {
"start": "gatsby develop -H 0.0.0.0",
"build": "gatsby build",
"clean": "gatsby clean",
"serve": "gatsby serve -H 0.0.0.0",
"now-build": "npm run build",
"pretty": "prettier --write .",
"lint": "eslint --fix --cache src/"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.1",
"prettier": "^2.2.1",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"lint": "eslint --fix --cache src/",
"pre-commit": "pretty-quick --staged"
}
}
}