forked from chestone/hackfortress-static-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 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
{
"name": "hackfortress-static-site",
"description": "Website for Hackfortress",
"version": "1.0.0",
"author": "Cheston Lee <chestonlloyd@gmail.com>",
"dependencies": {
"flickity": "^2.0.10",
"gatsby": "^1.9.138",
"gatsby-link": "^1.6.32",
"gatsby-plugin-google-analytics": "^1.0.15",
"gatsby-plugin-react-helmet": "^1.0.8",
"gatsby-plugin-react-next": "^1.0.7",
"gatsby-plugin-twitter": "^1.0.14",
"gatsby-plugin-typography": "^1.7.10",
"gatsby-source-filesystem": "^1.5.11",
"typography": "^0.16.6",
"typography-theme-twin-peaks": "^0.15.11"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.1.1",
"eslint-config-zen": "^3.0.0",
"eslint-plugin-react": "^7.1.0",
"gh-pages": "^1.1.0",
"prettier": "^1.9.2"
},
"keywords": [
"hackfortress"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"src/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
}
}