-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.54 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
{
"name": "beyondbazaar",
"private": true,
"description": "Beyond Bazaar",
"version": "0.1.0",
"author": "Kelvin Lockwood And Ahmed Eldessouki",
"contributors": [
"Ahmed Eldessouki",
"Kelvin Lockwood"
],
"dependencies": {
"@emotion/core": "^10.0.27",
"@emotion/styled": "^10.0.27",
"axios": "^0.19.0",
"dotenv": "^8.1.0",
"gatsby": "^2.24.2",
"gatsby-image": "^2.2.38",
"gatsby-plugin-emotion": "^4.1.21",
"gatsby-plugin-feed": "^2.3.26",
"gatsby-plugin-fixhash": "^0.0.4",
"gatsby-plugin-google-tagmanager": "^2.1.23",
"gatsby-plugin-gtag": "^1.0.13",
"gatsby-plugin-manifest": "^2.2.37",
"gatsby-plugin-netlify": "^2.1.31",
"gatsby-plugin-netlify-cache": "^1.2.0",
"gatsby-plugin-offline": "^3.0.31",
"gatsby-plugin-react-axe": "^0.2.2",
"gatsby-plugin-react-helmet": "^3.1.21",
"gatsby-plugin-sharp": "^2.2.25",
"gatsby-plugin-sitemap": "^2.2.25",
"gatsby-source-drupal": "^3.3.16",
"gatsby-source-filesystem": "^2.1.46",
"gatsby-transformer-sharp": "^2.3.12",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.0",
"react-player": "^1.13.0",
"react-slick": "^0.25.2",
"react-spring": "^8.0.25",
"rome": "^10.0.3-beta",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"babel-eslint": "~10.0.1",
"cypress": "^3.3.1",
"eslint": "~5.15.1",
"eslint-config-airbnb": "~17.1.0",
"eslint-config-prettier": "~4.1.0",
"eslint-plugin-cypress": "^2.2.1",
"eslint-plugin-import": "~2.16.0",
"eslint-plugin-jsx-a11y": "~6.2.1",
"eslint-plugin-prettier": "~3.0.1",
"eslint-plugin-react": "~7.12.4",
"eslint-plugin-react-hooks": "1.6.0",
"husky": "~1.3.1",
"jest": "^24.8.0",
"prettier": "~1.16.4",
"pretty-quick": "~1.10.0",
"react-testing-library": "^8.0.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "yarn run develop",
"serve": "gatsby serve",
"cypress": "cypress open",
"test": "cypress run",
"lint": "node ./node_modules/eslint/bin/eslint . --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "https://github.com/thirdandgrove/tagd8_gatsby/"
},
"bugs": {
"url": "https://github.com/thirdandgrove/tagd8_gatsby/issues"
},
"husky": {
"hooks": {
"commit-msg": "npm run lint",
"pre-commit": "pretty-quick --staged"
}
}
}