-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "maxday",
"description": "Happy birthday, Max",
"version": "1.0.0",
"author": "Lachlan Campbell",
"private": true,
"dependencies": {
"@hackclub/design-system": "^0.0.1-9",
"gatsby": "^1.9.254",
"gatsby-link": "^1.6.41",
"gatsby-plugin-react-helmet": "^2.0.11",
"gatsby-plugin-styled-components": "^2.0.11",
"gatsby-remark-images": "^1.5.62",
"gatsby-remark-smartypants": "^1.4.12",
"gatsby-source-filesystem": "^1.5.34",
"gatsby-transformer-remark": "^1.7.40",
"lodash": "^4.17.10",
"react-helmet": "^5.2.0",
"serve": "^6.5.6",
"styled-components": "^3.2.6"
},
"devDependencies": {
"prettier": "^1.12.1"
},
"homepage": "https://maxday.hackclub.com",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "https://github.com/zanedb/maxday"
},
"scripts": {
"dev": "gatsby develop",
"fmt": "prettier --no-semi --single-quote --write 'src/**/*.js' 'days/**/*.md'",
"build": "gatsby build",
"start": "serve public"
}
}