-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.93 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.93 KB
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
{
"name": "@atombuild/website",
"private": true,
"version": "0.0.0-development",
"description": "Website for the AtomBuild project, currating AtomBuild providers",
"scripts": {
"develop": "carraway develop",
"build": "carraway build",
"clean": "carraway clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AtomBuild/atombuild.github.io.git"
},
"keywords": [
"website",
"atom",
"gatsby"
],
"license": "Apache2",
"bugs": {
"url": "https://github.com/AtomBuild/atombuild.github.io/issues"
},
"homepage": "https://github.com/AtomBuild/atombuild.github.io#readme",
"dependencies": {
"carraway": "^1.0.44",
"gatsby": "^2.32.13",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-offline": "^4.10.0",
"gatsby-theme-atom-service": "^1.1.297",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"gatsby": {
"siteMetadata": {
"title": "AtomBuild",
"siteUrl": "https://atombuild.github.io",
"description": "Integrate your Build System with Atom.",
"color": {
"primary": "#efeae1",
"secondary": "#66595c",
"active": "#81c08b"
},
"nav": [
{
"name": "Atom Package Manager",
"url": "https://atom.io/packages/build"
},
{
"name": "Slack",
"url": "https://atom-slack.herokuapp.com/"
},
{
"name": "GitHub",
"url": "https://github.com/noseglid/atom-build"
}
]
},
"plugins": [
"gatsby-theme-atom-service",
{
"resolve": "gatsby-plugin-manifest",
"options": {
"name": "AtomBuild",
"short_name": "AtomBuild",
"start_url": "/",
"background_color": "#66595c",
"theme_color": "#efeae1",
"display": "minimal-ui",
"icon": "content/assets/logo.svg"
}
},
"gatsby-plugin-offline"
]
}
}