-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.67 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
91
92
93
{
"name": "gatsby-starter-mate",
"version": "2.5.2",
"description": "Gatsby v2 starter to create a top notch portfolio!",
"main": "index.js",
"scripts": {
"build": "gatsby clean && gatsby build",
"develop": "gatsby clean && gatsby develop",
"start": "yarn develop",
"serve": "yarn build && gatsby serve -p 9000",
"lint": "eslint ./src",
"setup": "node ./bin/setup.js",
"e2e:open": "cypress open",
"e2e:ci": "DETERMINISTIC=true start-server-and-test serve http://localhost:9000 'percy exec -- cypress run'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmaSuriano/gatsby-starter-mate.git"
},
"keywords": [
"gatsby",
"starter",
"contentful",
"PWA",
"portfolio"
],
"author": "Ema Suriano",
"license": "MIT",
"bugs": {
"url": "https://github.com/EmaSuriano/gatsby-starter-mate/issues"
},
"homepage": "https://github.com/EmaSuriano/gatsby-starter-mate#readme",
"dependencies": {
"@tippy.js/react": "^3.1.1",
"contentful": "^7.13.1",
"dotenv": "^8.2.0",
"envfile": "^4.5.0",
"gatsby": "2.15.22",
"gatsby-plugin-google-analytics": "^2.1.34",
"gatsby-plugin-manifest": "^2.2.39",
"gatsby-plugin-offline": "^2.0.25",
"gatsby-plugin-preload-link-crossorigin": "^1.0.2",
"gatsby-plugin-react-helmet": "^3.1.21",
"gatsby-plugin-styled-components": "^3.1.18",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-contentful": "2.1.79",
"gatsby-transformer-remark": "^2.6.48",
"inquirer": "^7.0.4",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-fontawesome": "^1.6.1",
"react-headroom": "^3.0.0",
"react-helmet": "^5.2.0",
"react-markdown": "^4.3.1",
"react-reveal": "^1.2.2",
"react-scroll-section": "^1.3.0",
"react-text-loop": "^2.0.1",
"rebass": "^3.0.0",
"styled-components": "^4.0.2"
},
"devDependencies": {
"@percy/cypress": "^2.1.1",
"@testing-library/cypress": "^5.0.0",
"axe-core": "^3.4.1",
"chalk": "^3.0.0",
"contentful-import": "^7.4.0",
"cypress": "^3.8.3",
"cypress-axe": "^0.5.1",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-cypress": "^2.8.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.18.0",
"husky": "^3.1.0",
"lint-staged": "^10.0.3",
"prettier": "^1.18.2",
"start-server-and-test": "^1.10.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}