-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.15 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.15 KB
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
{
"name": "hacksoc_website",
"private": true,
"description": "Hackathon Society HKU official website",
"version": "0.1.0",
"author": "HKU Hackathon Society team",
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@deckdeckgo/highlight-code": "^1.1.3",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@mdx-js/mdx": "^1.6.16",
"@mdx-js/react": "^1.6.14",
"emotion-theming": "^10.0.27",
"gatsby": "^2.24.26",
"gatsby-image": "^2.4.7",
"gatsby-plugin-chakra-ui": "^0.1.4",
"gatsby-plugin-google-analytics": "^2.3.13",
"gatsby-plugin-manifest": "^2.4.11",
"gatsby-plugin-mdx": "^1.2.30",
"gatsby-plugin-offline": "^3.2.9",
"gatsby-plugin-react-helmet": "^3.3.4",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sharp": "^2.6.24",
"gatsby-remark-highlight-code": "^1.4.6",
"gatsby-remark-images": "^3.3.23",
"gatsby-remark-katex": "^3.3.11",
"gatsby-source-filesystem": "^2.3.11",
"gatsby-transformer-remark": "^2.8.27",
"gatsby-transformer-sharp": "^2.5.5",
"katex": "^0.12.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-icons": "^3.10.0",
"smooth-scroll": "^16.1.3",
"typewriter-effect": "^2.13.1"
},
"devDependencies": {
"gh-pages": "^3.0.0",
"husky": "^4.2.5",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "gatsby build && gh-pages -d public -b master -r https://$GH_TOKEN@github.com/HackSocHKU/hacksochku.github.io.git",
"test": "echo \"There is no test for now, might write later\" && exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}