-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 2.69 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
{
"name": "gatsby-ts-apollo-starter",
"private": true,
"version": "0.1.0",
"description": "This starter is a ready-made configuration that includes Gatsby, React, Redux, Apollo, GraphQL, TypeScript, Styled-Components, Material-UI, Jest, Enzyme.",
"author": "Eduard Kirilov <ph0en1x.free@ya.ru>",
"dependencies": {
"@apollo/client": "^3.7.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.16",
"@mui/material": "^5.10.17",
"@mui/styled-engine-sc": "^5.10.16",
"@mui/styles": "^5.11.0",
"@reduxjs/toolkit": "^1.9.0",
"babel-plugin-styled-components": "^2.0.7",
"gatsby": "^5.2.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-manifest": "^5.2.0",
"gatsby-plugin-material-ui": "^4.0.2",
"gatsby-plugin-offline": "^6.2.0",
"gatsby-plugin-react-helmet": "^6.2.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-sharp": "^5.2.0",
"gatsby-plugin-styled-components": "^6.2.0",
"gatsby-plugin-typescript": "^5.2.0",
"gatsby-source-filesystem": "^5.2.0",
"gatsby-source-graphql": "^5.2.0",
"gatsby-transformer-sharp": "^5.2.0",
"isomorphic-fetch": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-redux": "^8.0.5",
"react-swipeable-views": "^0.14.0",
"styled-components": "^5.3.6",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/enzyme": "^3.10.12",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/react-helmet": "^6.1.6",
"@types/react-redux": "^7.1.24",
"@types/react-swipeable-views": "^0.13.1",
"@types/recompose": "^0.30.10",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^8.3.4",
"babel-jest": "^29.3.1",
"babel-preset-gatsby": "^3.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"path": "^0.12.7",
"prettier": "^2.8.0"
},
"keywords": [
"apollo",
"auth",
"enzyme",
"gatsby",
"graphql",
"jest",
"material-ui",
"react",
"redux",
"styled-components",
"typescript"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"start": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/eduard-kirilov/gatsby-ts-apollo-starter"
},
"bugs": {
"url": "https://github.com/eduard-kirilov/gatsby-ts-apollo-starter/issues"
}
}