-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.76 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.76 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
{
"name": "hkumls-site",
"private": true,
"description": "HKU Machine Learning Society's website",
"version": "0.1.0",
"author": "HKUMLS",
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@types/styled-components": "^5.1.0",
"emotion-theming": "^10.0.27",
"gatsby": "^2.22.15",
"gatsby-image": "^2.4.5",
"gatsby-plugin-chakra-ui": "^0.1.4",
"gatsby-plugin-manifest": "^2.4.9",
"gatsby-plugin-offline": "^3.2.7",
"gatsby-plugin-react-helmet": "^3.3.2",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sharp": "^2.6.9",
"gatsby-source-filesystem": "^2.3.8",
"gatsby-transformer-sharp": "^2.5.3",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.0.0",
"react-icons": "^3.10.0",
"smooth-scroll": "^16.1.3"
},
"devDependencies": {
"gh-pages": "^3.0.0",
"husky": "^4.2.5",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1",
"typescript": "^3.9.5"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md,ts,tsx}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"deploy": "yarn build && gh-pages -d public --repo https://github.com/hkumls/hkumls.github.io.git -b master"
},
"repository": {
"type": "git",
"url": "https://github.com/hkumls/hkumls-site"
},
"bugs": {
"url": "https://github.com/hkumls/hkumls-site/issues"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}