-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·74 lines (74 loc) · 2.35 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
{
"name": "federico.giac.one",
"description": "Gatsby website for Federico Giacone",
"version": "2.1.0",
"author": "Leonardo Giacone <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/leopuleo/federico.giac.one"
},
"keywords": [
"gatsby"
],
"private": true,
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"start": "yarn develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"release": "standard-version",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"dependencies": {
"babel-plugin-styled-components": "^1.12.0",
"gatsby": "^2.28.0",
"gatsby-image": "^2.7.0",
"gatsby-plugin-google-tagmanager": "^2.7.0",
"gatsby-plugin-manifest": "^2.8.0",
"gatsby-plugin-offline": "^3.6.0",
"gatsby-plugin-postcss": "^3.3.0",
"gatsby-plugin-purgecss": "^5.0.0",
"gatsby-plugin-react-helmet": "^3.6.0",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sharp": "^2.10.0",
"gatsby-plugin-smoothscroll": "^1.2.0",
"gatsby-plugin-styled-components": "^3.6.0",
"gatsby-source-filesystem": "^2.7.0",
"gatsby-source-instagram": "0.9.0",
"gatsby-source-prismic": "^3.2.1",
"gatsby-transformer-sharp": "^2.8.0",
"postcss": "^8.1.10",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.0.0",
"react-slick": "^0.27.13",
"slick-carousel": "^1.8.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"eslint": "^7.14.0",
"eslint-config-react-app": "^6.0.0",
"husky": "^4.2.5",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"standard-version": "^9.0.0",
"tailwindcss": "^2.0.1",
"twin.macro": "^2.0.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}