-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "drnadiv.com",
"private": true,
"description": "A blog about dr. Nadiv's experience as a mother and pediatrician.",
"version": "0.1.0",
"author": "Oron Nadiv <[email protected]>",
"bugs": {
"url": "https://github.com/OronNadiv/drnadiv.com/issues"
},
"dependencies": {
"bootstrap": "^4.5.3",
"classnames": "^2.2.6",
"firebase": "^7.24.0",
"gatsby": "^2.28.0",
"gatsby-background-image": "^1.3.1",
"gatsby-image": "^2.7.0",
"gatsby-plugin-categories": "^2.3.7",
"gatsby-plugin-feed": "^2.9.0",
"gatsby-plugin-firebase": "^0.1.8",
"gatsby-plugin-manifest": "^2.8.0",
"gatsby-plugin-react-helmet": "^3.6.0",
"gatsby-plugin-sass": "^2.7.0",
"gatsby-plugin-sentry": "^1.0.1",
"gatsby-plugin-sharp": "^2.10.0",
"gatsby-plugin-sitemap": "^2.8.0",
"gatsby-plugin-tags": "^2.3.7",
"gatsby-plugin-typography": "^2.8.0",
"gatsby-remark-copy-linked-files": "^2.6.0",
"gatsby-remark-embed-video": "^3.0.10",
"gatsby-remark-images": "^3.7.0",
"gatsby-remark-prismjs": "^3.9.0",
"gatsby-remark-responsive-iframe": "^2.7.0",
"gatsby-remark-smartypants": "^2.6.0",
"gatsby-source-filesystem": "^2.7.0",
"gatsby-transformer-remark": "^2.12.0",
"gatsby-transformer-sharp": "^2.8.0",
"js-cookie": "^2.2.1",
"node-sass": "^4.14.1",
"prismjs": "^1.22.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-bootstrap": "^1.4.0",
"react-dom": "^17.0.1",
"react-facebook": "^8.1.4",
"react-helmet": "^6.1.0",
"react-scroll": "^1.8.1",
"react-scroll-up": "^1.3.7",
"react-truncate": "^2.4.0",
"react-typography": "^0.16.19",
"typeface-merriweather": "^1.1.13",
"typeface-montserrat": "^1.1.13",
"typography": "^0.16.19",
"typography-theme-wordpress-2016": "^0.16.19",
"underscore": "^1.12.0",
"underscore.string": "^3.3.5"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "^4.1.0",
"prettier": "^2.2.1"
},
"homepage": "https://github.com/OronNadiv/drnadiv.com#readme",
"keywords": [
"DrNadiv.com"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/OronNadiv/drnadiv.com.git"
},
"scripts": {
"clean": "rm -rf public && rm -rf .cache",
"build": "npm run clean && gatsby build",
"develop": "npm run clean && gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"deploy": "npm run clean && firebase deploy"
}
}