-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.92 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
{
"name": "fluxbox-wiki.org",
"description": "fluxbox-wiki homepage, created with Gatsby Static Site Generator",
"homepage": "https://fluxbox-wiki.org/",
"version": "1.0.0",
"author": "sillyslux <[email protected]>",
"dependencies": {
"cheerio": "^0.22.0",
"date-fns": "^1.28.4",
"front-matter": "^2.1.2",
"gatsby": "^0.12.44",
"highlight.js": "^9.8.0",
"history": "^2.0.2",
"js-beautify": "^1.6.12",
"markdown-it": "^7.0.1",
"markdown-it-abbr": "^1.0.3",
"markdown-it-anchor": "^4.0.0",
"markdown-it-attrs": "^0.6.3",
"markdown-it-deflist": "^2.0.1",
"markdown-it-footnote": "^3.0.1",
"markdown-it-header-sections": "^0.2.2",
"markdown-it-replace-link": "^1.0.1",
"markdown-it-sub": "^1.0.0",
"moment": "^2.18.1",
"object-assign": "^4.1.1",
"octicons": "^5.0.1",
"prop-types": "^15.5.8",
"react-bootstrap-externaljs": "^0.30.8-silly.1",
"react-headroom": "^2.1.2",
"react-helmet": "^3.2.2",
"react-router-bootstrap": "^0.23.1",
"shelljs": "^0.7.7"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"gh-pages": "^0.12.0"
},
"keywords": [
"fluxbox",
"fluxbox-wiki"
],
"license": "unknown",
"main": "n/a",
"scripts": {
"clean": "rm -rf pages pages-src public",
"load-pages": "git clone https://github.com/sillyslux/fluxbox-wiki.git pages-src && mkdir pages && cp -r pages-src/* pages && cp -r _pages/* pages",
"build-js": "webpack -p --quiet --no-info --config editor/webpack.config.js && webpack -p --quiet --no-info --config public-js/webpack.config.js",
"build": "DEBUG=gatsby:* node_modules/.bin/gatsby build --prefix-links",
"travis-build": "npm run clean && npm run load-pages && npm run build && npm run build-js",
"develop": "gatsby develop"
}
}