-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.76 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "gatsby-personal-starter-blog",
"private": true,
"description": "A personal blog starter for a blog powered by Netlify CMS, based on the default blog starter",
"version": "1.0.0",
"author": "Francesco Ferraro <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/agenciaglobal/web.git"
},
"scripts": {
"storybook": "start-storybook -p 6006 -c .storybook",
"prettier": "prettier 'src/**/*.{ts,tsx}'",
"lint": "eslint . --ext tsx",
"checkup": "yarn prettier --check && yarn lint",
"format": "yarn lint --fix && yarn prettier --write",
"build": "gatsby build",
"develop": "gatsby develop",
"clean": "gatsby clean",
"start": "yarn clean && yarn develop",
"serve": "gatsby serve",
"test": "jest",
"deploy": "gatsby build && gh-pages -d public -r https://[email protected]/agenciaglobal/web.git",
"build-storybook": "build-storybook -c .storybook -o .out",
"chromatic": "npx chromatic --project-token=jeeo3rqsvu --auto-accept-changes",
"serve:static": "yarn clean && yarn build && npx serve public"
},
"dependencies": {
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"@mdx-js/mdx": "1.6.16",
"@mdx-js/react": "1.6.16",
"@storybook/react": "6.0.10",
"@types/classnames": "2.2.10",
"@types/lodash.throttle": "4.1.6",
"@types/react-helmet": "6.1.0",
"@types/yup": "0.29.5",
"chromatic": "5.1.0",
"classnames": "2.2.6",
"formik": "^2.1.5",
"gatsby": "^2.25.0",
"gatsby-image": "2.4.16",
"gatsby-plugin-feed-mdx": "^1.0.0",
"gatsby-plugin-google-analytics": "^2.0.18",
"gatsby-plugin-graphql-codegen": "^2.7.1",
"gatsby-plugin-gtag": "^1.0.13",
"gatsby-plugin-layout": "1.3.10",
"gatsby-plugin-manifest": "2.4.23",
"gatsby-plugin-material-ui": "2.1.10",
"gatsby-plugin-mdx": "1.2.32",
"gatsby-plugin-netlify-cache": "1.2.0",
"gatsby-plugin-netlify-cms": "^4.0.0",
"gatsby-plugin-react-helmet": "3.3.10",
"gatsby-plugin-react-i18next": "0.0.25",
"gatsby-plugin-sharp": "2.6.27",
"gatsby-plugin-typescript": "2.4.18",
"gatsby-remark-images": "3.3.25",
"gatsby-source-filesystem": "2.3.24",
"gatsby-theme-material-ui": "1.0.13",
"gatsby-transformer-sharp": "2.5.13",
"i18next": "19.6.3",
"lodash.throttle": "4.1.1",
"netlify-cms-app": "2.12.19",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-google-maps": "9.4.5",
"react-horizontal-scrolling-menu": "0.7.7",
"react-i18next": "11.7.0",
"react-masonry-css": "1.0.14",
"react-number-format": "4.4.1",
"react-on-screen": "2.1.1",
"react-sizeme": "2.6.12",
"react-use-visibility": "0.3.0",
"react-waypoint": "9.0.3",
"react-youtube": "7.11.3",
"sharp": "^0.25.4",
"yup": "0.29.3"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-syntax-class-properties": "^7.10.4",
"@babel/preset-env": "7.11.0",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@component-controls/storybook": "1.19.5",
"@storybook/addon-storyshots": "6.0.6",
"@storybook/addon-viewport": "6.0.6",
"@testing-library/react-hooks": "3.4.1",
"@types/googlemaps": "3.39.13",
"@typescript-eslint/eslint-plugin": "3.9.0",
"@typescript-eslint/parser": "3.9.0",
"babel-jest": "26.3.0",
"eslint": "7.6.0",
"eslint-plugin-react": "7.20.6",
"gatsby-plugin-root-import": "2.0.5",
"gh-pages": "^3.0.0",
"husky": "4.2.5",
"jest": "26.4.0",
"prettier": "2.0.5",
"react-test-renderer": "16.13.1",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn format",
"pre-push": "yarn test"
}
}
}