-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
95 lines (95 loc) · 3.11 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
94
95
{
"name": "gatsby-contentful-blog-portfolio",
"description": "Gatsby starter for a blog-portfolio served by Contentful",
"author": "escapemanuele",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"build-profile": "gatsby build --profile",
"develop": "gatsby develop",
"analize": "webpack-dashboard -- gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"builve": "gatsby clean && gatsby build && gatsby serve",
"setup": "node ./bin/setup.js",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,json,md}\"",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "jest",
"test:run:e2e": "start-server-and-test develop http://localhost:8000 cy:run",
"test:open:e2e": "start-server-and-test develop http://localhost:8000 cy:open"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^13.4.0",
"@loadable/component": "^5.12.0",
"aws-sdk": "^2.665.0",
"gatsby": "^2.20.36",
"gatsby-image": "^2.4.7",
"gatsby-plugin-no-javascript": "^2.0.5",
"gatsby-plugin-playground": "^1.0.6",
"gatsby-plugin-preact": "^4.0.3",
"gatsby-plugin-preload-fonts": "^1.2.10",
"gatsby-plugin-preload-link-crossorigin": "^1.0.2",
"gatsby-plugin-react-helmet": "^3.1.4",
"gatsby-plugin-sharp": "^2.2.12",
"gatsby-plugin-styled-components": "^3.1.2",
"gatsby-plugin-webpack-entry": "^1.0.1",
"gatsby-source-contentful": "^2.1.78",
"gatsby-source-filesystem": "^2.1.9",
"gatsby-transformer-sharp": "^2.2.6",
"preact": "^10.4.4",
"preact-render-to-string": "^5.1.9",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-icons": "^3.10.0",
"react-script-tag": "^1.1.2",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.10.1",
"@cypress/webpack-preprocessor": "^4.1.1",
"@testing-library/cypress": "^5.3.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.4.0",
"babel-loader": "^8.0.6",
"babel-preset-gatsby": "^0.3.6",
"chalk": "^3.0.0",
"contentful-import": "^7.7.12",
"css-loader": "^3.4.2",
"cypress": "^4.0.2",
"envfile": "^4.5.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.18.3",
"gatsby-plugin-eslint": "^2.0.8",
"gatsby-plugin-offline": "^3.2.11",
"gatsby-plugin-typescript": "^2.4.6",
"husky": "^4.2.3",
"identity-obj-proxy": "^3.0.0",
"inquirer": "^7.0.4",
"jest": "^25.4.0",
"prettier": "^1.19.1",
"react-test-renderer": "^16.13.1",
"start-server-and-test": "^1.10.8",
"style-loader": "^1.1.3",
"typescript": "^3.9.5",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-dashboard": "^3.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/escapemanuele/gatsby-contentful-blog-portfolio"
}
}