-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
44 lines (44 loc) · 1.23 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
{
"name": "gatsby-firebase-simple-auth",
"description": "Gatsby simple authentication flow using firebase",
"version": "1.0.0",
"author": "Marco Melilli <[email protected]>",
"dependencies": {
"dotenv-webpack": "^6.0.0",
"firebase": "^9.8.2",
"gatsby": "^4.15.2",
"gatsby-plugin-create-client-paths": "^4.9.0",
"gatsby-plugin-react-helmet": "^5.15.0",
"prop-types": "^15.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-firebaseui": "^6.0.0",
"react-helmet": "^5.2.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"dev": "npm run develop",
"serve": "gatsby serve",
"build": "gatsby build",
"build:pp": "gatsby build --prefix-paths",
"build:gh": "npm run clean && npm run build:pp && gh-pages -d public",
"clean": "rm -rf public && rm -rf .cache",
"lint:js": "eslint --ext .js,.jsx .",
"format:js": "prettier '**/*.{js,jsx}' --write"
},
"devDependencies": {
"autoprefixer": "^10.4.7",
"gatsby-plugin-postcss": "^5.15.0",
"postcss": "^8.4.14",
"tailwindcss": "^3.0.24"
},
"overrides": {
"graphql": "^15.4.0",
"graphql-compose": "^7.25.0",
"webpack": "^5.24.2"
}
}