-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.54 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
81
82
83
84
{
"name": "hackcu-live",
"private": true,
"version": "0.1.0",
"dependencies": {
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@material-ui/core": "^4.8.0",
"@material-ui/icons": "^4.5.1",
"@material-ui/styles": "^4.7.1",
"@rebass/forms": "^4.0.6",
"@rebass/preset": "^4.0.5",
"classnames": "^2.2.6",
"gatsby": "^2.18.8",
"gatsby-image": "^2.2.34",
"gatsby-plugin-emotion": "^4.1.18",
"gatsby-plugin-manifest": "^2.2.31",
"gatsby-plugin-material-ui": "^2.1.6",
"gatsby-plugin-offline": "^3.0.27",
"gatsby-plugin-portal": "^1.0.7",
"gatsby-plugin-preact": "^3.1.26",
"gatsby-plugin-react-helmet": "^3.1.16",
"gatsby-plugin-sharp": "^2.3.5",
"gatsby-plugin-typography": "^2.3.20",
"gatsby-source-filesystem": "^2.1.40",
"gatsby-source-graphql": "^2.1.28",
"gatsby-transformer-remark": "^2.6.42",
"gatsby-transformer-sharp": "^2.3.7",
"gatsby-transformer-yaml-full": "^0.2.0",
"gatsby-yaml-full-markdown": "^0.2.0",
"gh-pages": "^2.2.0",
"materialize-css": "^1.0.0",
"moment": "^2.24.0",
"number-to-words": "^1.2.4",
"preact": "^10.3.2",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dark-mode-toggle": "0.0.3",
"react-dom": "^16.12.0",
"react-dotdotdot": "^1.3.1",
"react-helmet": "^5.2.1",
"react-media": "^1.10.0",
"react-typography": "^0.16.19",
"rebass": "^4.0.7",
"remark-html": "^11.0.0",
"theme-ui": "^0.3.0",
"typography": "^0.16.19",
"typography-theme-funston": "^0.16.19"
},
"devDependencies": {
"@types/number-to-words": "^1.2.0",
"husky": "^4.0.0",
"lint-staged": "^10.0.0",
"prettier": "^2.0.1",
"surge": "^0.21.3"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "yarn develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"lint-staged": {
"*.{js,jsx,json,md}": "yarn format"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}