-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.74 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
{
"name": "lubdhok-site",
"description": "Lubdhok Foundation Site",
"version": "1.0.0",
"author": "Farhad Yasir @nutboltu",
"bugs": {
"url": "https://github.com/bsadd/lubdhok-foundation/issues"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^14.1.1",
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"animate.css": "^3.7.2",
"gatsby-image": "^2.0.38",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sharp": "^2.0.34",
"gatsby-source-contentful": "^2.0.48",
"gatsby-transformer-remark": "^2.3.8",
"gatsby-transformer-sharp": "^2.1.18",
"google-maps-react": "^2.0.6",
"lodash": "^4.17.11",
"react": "^16.12.0",
"react-animate-on-scroll": "^2.1.5",
"react-dom": "^16.12.0",
"react-ga": "^3.1.2",
"react-helmet": "^5.2.0",
"react-images": "^1.1.7",
"react-multi-carousel": "^2.6.1",
"react-photo-gallery": "^8.0.0",
"react-vertical-timeline-component": "^3.0.2",
"sharp": "^0.26.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chalk": "^2.4.2",
"contentful-export": "^7.10.7",
"contentful-import": "^7.4.3",
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.12.4",
"gatsby": "^2.3.22",
"gatsby-plugin-sitemap": "^2.4.12",
"gh-pages": "^2.0.1",
"inquirer": "^6.2.2",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"yargs": "^15.4.1",
"yargs-parser": "^13.0.0"
},
"homepage": "https://github.com/bsadd/lubdhok-foundation",
"keywords": [
"gatsby",
"contentful"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/bsadd/lubdhok-foundation.git"
},
"scripts": {
"dev": "npm run develop",
"develop": "gatsby develop",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --trailing-comma es5 --single-quote --write 'src/**/*.js' 'src/**/*.md' 'bin/*.js'",
"build": "gatsby build",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix *.js bin/*.js",
"start": "npm run develop",
"export:dev": "node ./scripts/contentful/export.js --env=dev",
"export:master": "node ./scripts/contentful/export.js --env=master",
"import:dev": "node ./scripts/contentful/import.js --env=dev",
"import:master": "node ./scripts/contentful/import.js --env=master"
}
}