-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.61 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
{
"name": "csec-landing",
"private": true,
"description": "Computer Science Enrichment Club at the University of Toronto Scarborough website",
"version": "0.1.0",
"author": "Frederic Pun <frederic.pun@gmail.com> (https://fpunny.xyz)",
"dependencies": {
"dotenv": "^16.3.1",
"gatsby": "^5.11.0",
"gatsby-plugin-google-analytics": "^5.11.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-image": "^3.11.0",
"gatsby-plugin-layout": "^4.11.0",
"gatsby-plugin-manifest": "^5.11.0",
"gatsby-plugin-module-resolver": "^1.0.3",
"gatsby-plugin-netlify": "^5.1.0",
"gatsby-plugin-offline": "^6.11.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-sass": "^6.11.0",
"gatsby-plugin-sharp": "^5.11.0",
"gatsby-source-filesystem": "^5.11.0",
"gatsby-source-strapi": "3.3.0",
"gatsby-transformer-json": "^5.11.0",
"gatsby-transformer-sharp": "^5.11.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.10.1",
"sass": "^1.64.1"
},
"overrides": {
"react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825": {
"react": "^18.2.0"
}
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"clean": "rm -rf .cache public",
"develop": "GATSBY_GRAPHQL_IDE=playground gatsby develop",
"analyze": "webpack --profile --json > .cache/stats.json && webpack-bundle-analyzer .cache/stats.json",
"start": "npm run develop",
"run": "npx gatsby build && npx gatsby serve",
"serve": "gatsby serve"
}
}