-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.64 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "MHP-website",
"description": "Monash Human Power's public website, showcasing the best of MHP",
"version": "1.0.0",
"main": "src/pages/index.js",
"repository": "git@github.com:monash-human-power/MHP-website.git",
"author": "Monash Human Power <electrical.mhp@gmail.com>",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.23.3",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@popperjs/core": "^2.11.7",
"@types/bootstrap": "^5.2.6",
"@types/react": "^18.2.24",
"babel-eslint": "^10.0.0",
"babel-plugin-styled-components": "^2.1.1",
"bootstrap": "^5.3.1",
"eslint": "^8.48.0",
"gatsby": "^5.12.5",
"gatsby-adapter-netlify": "^1.0.1",
"gatsby-cli": "^5.8.0",
"gatsby-plugin-anchor-links": "^1.2.1",
"gatsby-plugin-google-analytics": "^5.9.0",
"gatsby-plugin-heap": "^1.1.0",
"gatsby-plugin-image": "^3.9.0",
"gatsby-plugin-manifest": "^5.9.0",
"gatsby-plugin-netlify-cms": "^7.12.1",
"gatsby-plugin-offline": "^6.9.0",
"gatsby-plugin-react-helmet": "^6.12.0",
"gatsby-plugin-sharp": "^5.9.0",
"gatsby-plugin-sitemap": "^6.12.3",
"gatsby-plugin-styled-components": "^6.12.0",
"gatsby-remark-classes": "^1.0.2",
"gatsby-remark-images": "^7.8.0",
"gatsby-remark-prismjs": "^7.9.0",
"gatsby-source-filesystem": "^5.8.0",
"gatsby-transformer-remark": "^6.13.1",
"gatsby-transformer-sharp": "^5.12.3",
"jquery": "^3.7.1",
"netlify-cms-app": "^2.12.19",
"prismjs": "^1.29.0",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-bootstrap": "^2.10.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-is": ">= 18.2.0",
"styled-components": "^5.3.9",
"typescript": ">=5.2.2",
"webpack": "^5.88.1"
},
"devDependencies": {
"all-contributors-cli": "^6.17.2",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.1.1"
},
"scripts": {
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"develop": "gatsby develop",
"dev": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,yml}": "yarn run prettier --write"
},
"packageManager": "yarn@3.3.1"
}