-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "jszgb",
"description": "Javascript Zagreb",
"version": "1.0.0",
"author": "Dino Trojak <[email protected]>",
"dependencies": {
"gatsby": "^1.9.141",
"gatsby-link": "^1.6.32",
"gatsby-paginate": "1.0.16",
"gatsby-plugin-google-fonts": "^0.0.3",
"gatsby-plugin-react-helmet": "^1.0.8",
"gatsby-plugin-styled-components": "^2.0.11",
"gatsby-source-filesystem": "^1.5.11",
"gatsby-transformer-remark": "^1.7.25",
"pre-commit": "^1.2.2",
"react-fontawesome": "^1.6.1",
"react-twitter-widgets": "^1.7.1",
"styled-components": "^3.4.2"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"lint": "standard --fix",
"develop": "gatsby develop",
"deploy": "gatsby build && cp README.md public/ && cp -R .github public/ && cp favicon.ico public/ && cp CNAME public/ && gh-pages -d public -b master",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"src/**/*.js\"",
"test": "standard"
},
"devDependencies": {
"gh-pages": "^1.1.0",
"prettier": "^1.9.2",
"standard": "^10.0.3"
},
"standard": {
"globals": [
"graphql"
]
},
"pre-commit": [
"test"
]
}