-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "chapter-website-2021",
"version": "1.0.0",
"private": true,
"description": "Chapter Website 2021",
"author": "[supraditya]",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"build": "NODE_ENV=production npm-run-all build:*",
"build:pre-static": "npm install",
"build:static": "gatsby build",
"build:functions-install-dependencies": "cd src; cd functions; for i in */; do cd ${i%/}; npm install; cd ..; done;"
},
"dependencies": {
"@rehooks/window-scroll-position": "^1.0.1",
"gatsby": "^2.32.4",
"gatsby-image": "^2.11.0",
"gatsby-plugin-google-gtag": "^3.6.0",
"gatsby-plugin-manifest": "^3.2.0",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-sharp": "^2.14.1",
"gatsby-plugin-smoothscroll": "^1.2.0",
"gatsby-source-filesystem": "^2.11.0",
"gatsby-transformer-sharp": "^2.12.0",
"react": "^16.13.1",
"react-backdrop-filter": "^2.1.0",
"react-dom": "^16.13.1",
"react-glider": "^2.0.4",
"react-helmet": "^6.1.0",
"react-icons": "^4.2.0",
"react-toastify": "^7.0.4"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}