-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.89 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-starter-typescript",
"description": "Gatsby TypeScript starter",
"version": "1.0.0",
"author": "Omri Levy <[email protected]>",
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.0.0",
"@hookform/resolvers": "^2.6.0",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@material-ui/styles": "^4.11.4",
"@testing-library/react": "^12.0.0",
"@types/react-google-recaptcha": "^2.1.0",
"babel-plugin-styled-components": "^1.13.1",
"color": "^3.1.3",
"env-cmd": "^10.1.0",
"framer-motion": "^4.1.17",
"gatsby": "^3.8.0",
"gatsby-image": "^3.8.0",
"gatsby-plugin-anchor-links": "^1.2.1",
"gatsby-plugin-image": "^1.8.0",
"gatsby-plugin-manifest": "^3.8.0",
"gatsby-plugin-material-ui": "^3.0.1",
"gatsby-plugin-react-helmet": "^4.8.0",
"gatsby-plugin-sharp": "^3.8.0",
"gatsby-plugin-styled-components": "^4.8.0",
"gatsby-plugin-typescript": "^3.8.0",
"gatsby-source-contentful": "^5.8.0",
"gatsby-source-filesystem": "^3.8.0",
"gatsby-theme-material-ui": "^2.0.1",
"gatsby-transformer-sharp": "^3.8.0",
"jest": "^27.0.5",
"jss-plugin-extend": "^10.7.0",
"jss-rtl": "^0.3.0",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-recaptcha": "^2.1.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.9.0",
"react-intl": "^5.20.4",
"styled-components": "^5.3.0",
"yup": "^0.32.9"
},
"keywords": [
"gatsby, typescript"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true env-cmd -f .env.production gatsby build --log-pages",
"start": "env-cmd -f .env.development gatsby develop",
"format": "prettier --config ./.prettierrc --write .",
"test": "jest --watch --verbose",
"cy:open": "cypress open",
"postinstall": "npx patch-package"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git push"
}
},
"devDependencies": {
"@testing-library/cypress": "^7.0.6",
"@testing-library/dom": "^8.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/user-event": "^13.1.9",
"@types/color": "^3.0.1",
"@types/jest": "^26.0.23",
"@types/material-ui": "^0.21.8",
"@types/node": "^15.12.5",
"@types/react": "^17.0.11",
"@types/react-dom": "17.0.8",
"@types/react-helmet": "^6.1.1",
"@types/react-scrollspy": "^3.3.3",
"@types/styled-components": "^5.1.10",
"@types/testing-library__jest-dom": "^5.14.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"babel-jest": "^27.0.5",
"babel-preset-gatsby": "^1.8.0",
"cypress": "^7.6.0",
"eslint": "7.29.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-jest": "^24.3.6",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"typescript": "^4.3.4"
}
}