This repository has been archived by the owner on May 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 2.98 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "gatsby-starter-location-github",
"description": "Local GitHub directory.",
"license": "AGPL-3.0",
"version": "1.0.0",
"repository": "millette/gatsby-starter-location-github",
"author": {
"name": "Robin Millette",
"email": "[email protected]",
"url": "http://robin.millette.info"
},
"homepage": "http://dev.rollodeqc.com/",
"browser": {
"npm-git-links": false,
"gatsby-plugin-sass": false,
"gatsby-plugin-sharp": false,
"gatsby-source-filesystem": false,
"gatsby-plugin-purgecss": false,
"gatsby-plugin-webpack-bundle-analyzer": false,
"gatsby-transformer-json": false,
"gatsby-transformer-sharp": false,
"node-sass": false,
"ghraphql": false,
"bootstrap": false,
"bootswatch": false
},
"dependencies": {
"@data-ui/sparkline": "^0.0.84",
"bootstrap": "4.4.1",
"bootswatch": "4.4.1",
"browser-lang": "^0.1.0",
"gatsby": "^2.19.49",
"gatsby-image": "^2.2.45",
"gatsby-plugin-catch-links": "^2.1.28",
"gatsby-plugin-feed": "^2.3.29",
"gatsby-plugin-purgecss": "^4.0.1",
"gatsby-plugin-react-helmet": "^3.1.24",
"gatsby-plugin-sass": "^2.1.31",
"gatsby-plugin-sharp": "^2.4.13",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^3.1.50",
"gatsby-remark-smartypants": "^2.1.23",
"gatsby-source-filesystem": "^2.1.57",
"gatsby-transformer-json": "^2.2.28",
"gatsby-transformer-remark": "^2.6.59",
"gatsby-transformer-sharp": "^2.3.19",
"ghraphql": "^1.0.5",
"intl": "^1.2.5",
"lodash.deburr": "^4.1.0",
"node-sass": "^4.13.1",
"npm-git-links": "^1.0.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-bootstrap-typeahead": "^3.4.7",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-intl": "2.9.0",
"typeface-roboto": "^0.0.75"
},
"engines": {
"node": ">= 10.16.3"
},
"keywords": [
"gatsby",
"starter",
"github"
],
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
]
},
"scripts": {
"ghraphql:colors": "ghraphql --config custom/config.js --colors",
"ghraphql:users": "ghraphql --config custom/config.js --verbose",
"ghraphql:sparks": "ghraphql --config custom/config.js --sparks --verbose",
"ghraphql:init": "ghraphql --config custom/config.js --colors && ghraphql --config custom/config.js --verbose && ghraphql --config custom/config.js --sparks --verbose && mkdir custom/locales",
"build": "gatsby build",
"serve": "gatsby serve",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"develop": "gatsby develop --port 8001",
"dev": "gatsby develop --port 8001",
"clean": "rm public/* .cache -fr"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"arrowParens": "always"
},
"devDependencies": {
"gh-pages": "^2.2.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1"
}
}