-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.49 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.49 KB
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": "techlabs-website",
"private": true,
"description": "The official website for techlabs global",
"version": "0.1.0",
"license": "MIT",
"author": "TechLabs e.V.",
"contributors": [
"Richard Menning <richard.menning@techlabs.org>",
"Paola Barboglio <paola.barboglio@techlabs.org",
"Pia Schürmann <pia.schuermann@techlabs.org>",
"Luca Schnitter <luca.schnitter@techlabs.org>"
],
"scripts": {
"build": "cross-env GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"deploy": "gatsby build && gh-pages -d public",
"i18n": "node ./translationRunner.js",
"cy:open": "cypress open",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open"
},
"dependencies": {
"@contentful/gatsby-transformer-contentful-richtext": "^13.1.0",
"@csstools/normalize.css": "^10.1.0",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.10",
"@material-ui/core": "^4.10.1",
"babel-plugin-react-intl": "^5.1.18",
"bluebird": "^3.7.2",
"bootstrap": "^4.5.0",
"cross-env": "^7.0.3",
"dayjs": "^1.8.28",
"dotenv": "^8.2.0",
"env": "0.0.2",
"gatsby": "^2.23.3",
"gatsby-background-image": "^0.10.2",
"gatsby-cli": "^2.12.45",
"gatsby-image": "^2.4.7",
"gatsby-plugin-gdpr-cookies": "^2.0.0",
"gatsby-plugin-google-tagmanager": "^2.3.5",
"gatsby-plugin-hotjar": "^1.0.1",
"gatsby-plugin-intl": "^0.3.3",
"gatsby-plugin-manifest": "^2.4.35",
"gatsby-plugin-next-seo": "^1.7.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sass": "^2.3.4",
"gatsby-plugin-sharp": "^2.6.35",
"gatsby-source-contentful": "^2.3.15",
"gatsby-source-filesystem": "^2.3.11",
"gatsby-transformer-remark": "^2.8.34",
"gatsby-transformer-sharp": "^2.5.5",
"jquery": "^3.5.1",
"lodash": "^4.17.21",
"node-sass": "^4.14.1",
"path": "^0.12.7",
"popper.js": "^1.16.1",
"react": "^16.13.1",
"react-cookie-consent": "^2.5.0",
"react-dom": "^16.13.1",
"react-headroom": "^2.2.8",
"react-helmet": "^5.2.1",
"react-helmet-async": "^1.0.9",
"react-insta-stories": "^1.5.2",
"react-intl": "latest",
"react-intl-translations-manager": "^5.0.3",
"react-modal": "^3.11.2",
"react-overdrive": "0.0.10",
"react-responsive-modal": "^4.0.1",
"react-swipeable": "^6.1.0",
"react-transition-group": "^4.4.1",
"react-typeform-embed": "^0.2.1",
"react-visibility-sensor": "^5.1.1",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@testing-library/cypress": "^7.0.6",
"babel-cli": "^6.26.0",
"cypress": "^7.2.0",
"gatsby-plugin-eslint": "^2.0.8",
"gh-pages": "^2.2.0",
"prettier": "^1.19.1",
"start-server-and-test": "^1.12.1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"allLocales": [
"en",
"de"
],
"plugins": [
[
"react-intl",
{
"messagesDir": ".cache/translations/extractedMessages/",
"enforceDescriptions": false
}
]
]
}