-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.93 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
{
"name": "motoviaggiatori",
"private": true,
"description": "Gatsby + Netlify CMS powered blog MotoViaggiatori.it",
"version": "3.1.1",
"author": "Gabriele Destefanis <g.destefanis@topsolution.it>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/destegabry/motoviaggiatori"
},
"scripts": {
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"develop": "gatsby develop",
"lint": "eslint --ignore-path .gitignore --fix --ext js,jsx,ts,tsx .",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fontsource/commissioner": "^4.5.1",
"@fontsource/crimson-pro": "^4.5.2",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.17",
"@netlify/plugin-gatsby": "^1.0.3",
"algoliasearch": "^4.12.1",
"color": "^4.2.0",
"date-fns": "^2.28.0",
"dotenv": "^15.0.0",
"emotion-reset": "^3.0.1",
"gatsby": "^4.6.1",
"gatsby-plugin-algolia": "^0.25.0",
"gatsby-plugin-emotion": "^7.6.0",
"gatsby-plugin-feed": "^4.6.0",
"gatsby-plugin-fontawesome-css": "^1.2.0",
"gatsby-plugin-google-gtag": "^4.6.0",
"gatsby-plugin-manifest": "^4.6.0",
"gatsby-plugin-netlify": "^4.1.0",
"gatsby-plugin-netlify-cms": "^6.6.0",
"gatsby-plugin-react-helmet": "^5.6.0",
"gatsby-plugin-react-svg": "^3.1.0",
"gatsby-plugin-remove-fingerprints": "^0.0.2",
"gatsby-plugin-sitemap": "^5.6.0",
"gatsby-remark-autolink-headers": "^5.6.0",
"gatsby-remark-embed-video": "^3.1.1",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-responsive-iframe": "^5.6.0",
"gatsby-remark-smartypants": "^5.6.0",
"gatsby-source-filesystem": "^4.6.0",
"gatsby-transformer-remark": "^5.6.0",
"lodash.debounce": "^4.0.8",
"netlify-cms-app": "^2.15.65",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-instantsearch-dom": "^6.22.0",
"react-youtube": "^7.14.0",
"remark": "^13.0.0",
"remark-html": "^13.0.2",
"typescript": "^4.5.5",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@types/color": "^3.0.3",
"@types/gtag.js": "^0.0.8",
"@types/lodash.debounce": "^4.0.6",
"@types/react-dom": "^17.0.11",
"@types/react-helmet": "^6.1.5",
"@types/react-instantsearch-dom": "^6.12.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --ignore-path .gitignore --fix --max-warnings=0 ."
]
}
}