-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·94 lines (94 loc) · 2.59 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
{
"name": "gatsby-starter-saas-redux",
"description": "An Gatsby starter for SaaS products. Uses redux and apollo and a graphql token auth backend.",
"version": "1.0.0",
"author": "zauberware technologies",
"contributors": [
{
"name": "Philipp Siegmund",
"email": "[email protected]"
},
{
"name": "Simon Franzen",
"email": "[email protected]"
}
],
"dependencies": {
"@magicsoup.io/stock": "^0.0.14",
"apollo-client": "^2.4.12",
"apollo-client-preset": "^1.0.8",
"apollo-link-context": "^1.0.14",
"apollo-link-http": "^1.5.11",
"babel-plugin-styled-components": "^1.10.0",
"dotenv": "^6.2.0",
"gatsby": "2.0.112",
"gatsby-image": "^2.0.29",
"gatsby-plugin-manifest": "^2.0.17",
"gatsby-plugin-offline": "^2.0.22",
"gatsby-plugin-react-helmet": "^3.0.6",
"gatsby-plugin-sharp": "^2.0.20",
"gatsby-plugin-sitemap": "^2.0.5",
"gatsby-plugin-styled-components": "^3.0.5",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-filesystem": "^2.0.20",
"gatsby-transformer-json": "^2.1.8",
"gatsby-transformer-remark": "^2.2.4",
"gatsby-transformer-sharp": "^2.1.13",
"graphql-tag": "^2.10.1",
"isomorphic-fetch": "^2.2.1",
"marksy": "^6.1.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-apollo": "^2.4.1",
"react-dom": "^16.7.0",
"react-helmet": "^5.2.0",
"react-highlight.js": "^1.0.7",
"react-i18next": "^10.0.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"styled-components": "^4.1.3",
"styled-normalize": "^8.0.6",
"styled-system": "^3.2.1",
"universal-cookie": "^3.0.7"
},
"keywords": [
"redux",
"react-redux",
"apollo",
"apollo-client",
"authentication",
"magicsoup.io",
"magicsoup",
"styled-components",
"styled-system",
"gatsby",
"starter",
"boilerplate",
"gatsby-starter"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run clean && npm run develop",
"serve": "gatsby serve",
"test": "jest",
"clean": "rm -rf .public/ && rm -rf .cache/"
},
"repository": {
"type": "git",
"url": "https://github.com/zauberware/gatsby-starter-redux-saas"
},
"bugs": {
"url": "https://github.com/zauberware/gatsby-starter-redux-saas/issues"
},
"devDependencies": {
"babel-jest": "^24.1.0",
"babel-preset-gatsby": "^0.1.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.1.0",
"react-test-renderer": "^16.8.0"
}
}