forked from eclipse-iofog/iofog.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.48 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
102
103
104
105
106
107
108
109
110
111
{
"name": "iofog.org",
"version": "2.0.2",
"description": "ioFog.org documentation website",
"dependencies": {
"ajv": "^5.5.2",
"bootstrap": "^4.3.1",
"docsearch.js": "^2.6.2",
"fs-extra": "^7.0.1",
"gatsby": "^2.18.18",
"gatsby-image": "^2.0.0",
"gatsby-plugin-catch-links": "^2.1.12",
"gatsby-plugin-feed": "^2.0.5",
"gatsby-plugin-google-analytics": "^2.0.5",
"gatsby-plugin-manifest": "^2.0.2",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-nprogress": "^2.0.5",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sass": "^2.0.1",
"gatsby-plugin-sharp": "^2.0.5",
"gatsby-plugin-sitemap": "^2.2.24",
"gatsby-plugin-twitter": "^2.0.5",
"gatsby-redirect-from": "^0.1.1",
"gatsby-remark-autolink-headers": "^2.0.11",
"gatsby-remark-copy-linked-files": "^2.0.7",
"gatsby-remark-embed-markdown": "0.0.4",
"gatsby-remark-emojis": "^0.2.3",
"gatsby-remark-images": "^2.0.1",
"gatsby-remark-prismjs": "^2.0.5",
"gatsby-remark-relative-images": "^0.2.3",
"gatsby-remark-responsive-iframe": "^2.0.5",
"gatsby-source-filesystem": "^2.1.28",
"gatsby-transformer-json": "^2.1.4",
"gatsby-transformer-remark": "^2.1.1",
"gatsby-transformer-sharp": "^2.1.1",
"jquery": "^1.9.1",
"markdown-spellcheck": "^1.3.1",
"node-sass": "^4.9.3",
"popper.js": "^1.14.7",
"prismjs": "^1.15.0",
"react": "^16.4.1",
"react-disqus-comments": "^1.1.1",
"react-dom": "^16.4.1",
"react-dropdown": "^1.6.2",
"react-helmet": "^5.2.1",
"react-icons": "^3.2.0",
"react-share": "^2.0.0",
"react-twitter-widgets": "^1.7.1",
"swagger-ui": "^3.24.0",
"tachyons-sass": "^4.9.3",
"url-join": "^4.0.0"
},
"devDependencies": {
"cli-glob": "^0.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"gh-pages": "^1.2.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"remark-cli": "^5.0.0",
"remark-preset-lint-recommended": "^3.0.1",
"stylefmt": "^6.0.0",
"stylelint": "^9.2.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.3.1",
"write-good": "^0.11.3"
},
"keywords": [
"ioFog",
"fog computing",
"Edgeworx"
],
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"build": "gatsby build",
"build:pp": "gatsby build --prefix-paths",
"deploy:gh": "npm run clean && npm run build && gh-pages -d public",
"clean": "rm -rf public && rm -rf .cache",
"lint:js": "eslint --ext .js,.jsx .",
"lint:md": "remark content && npm run spellcheck",
"write-good": "write-good $(glob 'content/**/*.md')",
"format": "prettier '{scripts,content,src}/**/*.{js,jsx,json,css,scss,md}' --write",
"spellcheck": "mdspell --ignore-numbers --ignore-acronyms --en-us 'content/docs/**/*.md' '!**/markdown-kitchen-sink.md'"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,css,md}": [
"prettier '{scripts,content,src}/**/*.{js,jsx,json,css,scss,md}' --write",
"git add"
]
}
}