-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.71 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
{
"name": "gatsby-emotion-tailwind-starter",
"description": "A starter Gatsby site which includes Emotion and Tailwind",
"version": "4.3.0",
"author": "Chris Williams",
"repository": "https://github.com/chrismwilliams/gatsby-emotion-tailwind-starter",
"keywords": [
"gatsby",
"emotion",
"tailwindcss",
"starter"
],
"license": "MIT",
"scripts": {
"dev": "gatsby develop -o",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"format": "prettier --trailing-comma es5 --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve"
},
"babelMacros": {
"twin": {
"preset": "emotion"
}
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fontsource/open-sans": "^5.0.2",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"dotenv": "^16.0.0",
"gatsby": "^4.13.1",
"gatsby-plugin-emotion": "^7.13.0",
"gatsby-plugin-image": "^2.13.0",
"gatsby-plugin-manifest": "^4.13.0",
"gatsby-plugin-offline": "^5.13.0",
"gatsby-plugin-react-helmet": "^5.13.0",
"gatsby-plugin-sharp": "^4.13.0",
"gatsby-plugin-sitemap": "^5.13.0",
"gatsby-source-filesystem": "^4.13.0",
"gatsby-transformer-sharp": "^4.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"babel-preset-gatsby": "^3.2.0",
"prettier": "^2.6.2",
"tailwindcss": "^2.2.19",
"twin.macro": "^2.8.2"
}
}