This repository has been archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 3.04 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
{
"name": "@rgbk/docs",
"description": "Rigoblock documentation website",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"build": "rm -rf .cache && npm run clean && node --max_old_space_size=4096 ./node_modules/.bin/gatsby build",
"build-api": "rm -rf .cache && npm run clean && BUILD_API=true node --max_old_space_size=4096 ./node_modules/.bin/gatsby build",
"develop": "node --max-old-space-size=8192 ./node_modules/.bin/gatsby develop",
"dev": "rm -rf .cache && npm run clean && npm run develop",
"serve": "gatsby serve",
"fetch-docs": "rm -rf content && node scripts/fetchMDs",
"fetch-api": "rm -rf content && FETCH_REFERENCE=true node scripts/fetchMDs",
"clean": "rm -rf public",
"lint:md": "remark content/",
"lint": "eslint src --ext js,jsx --ignore-path .gitignore --fix"
},
"dependencies": {
"@andrew-codes/gatsby-plugin-elasticlunr-search": "1.0.4",
"babel-eslint": "10.0.1",
"babel-plugin-lodash": "3.2.11",
"chalk": "2.4.1",
"change-case": "3.0.2",
"classnames": "2.2.6",
"dotenv": "6.2.0",
"elasticlunr": "0.9.5",
"gatsby": "1.9.279",
"gatsby-link": "1.6.45",
"gatsby-plugin-catch-links": "1.0.26",
"gatsby-plugin-feed": "1.3.4",
"gatsby-plugin-google-analytics": "1.0.3",
"gatsby-plugin-google-fonts": "0.0.3",
"gatsby-plugin-manifest": "1.0.27",
"gatsby-plugin-nprogress": "1.0.14",
"gatsby-plugin-react-helmet": "1.0.2",
"gatsby-plugin-sass": "1.0.26",
"gatsby-plugin-sharp": "1.6.1",
"gatsby-plugin-sitemap": "1.2.1",
"gatsby-plugin-twitter": "1.0.6",
"gatsby-remark-autolink-headers": "1.4.3",
"gatsby-remark-copy-linked-files": "1.5.37",
"gatsby-remark-images": "1.5.67",
"gatsby-remark-prismjs": "1.2.24",
"gatsby-remark-responsive-iframe": "1.4.20",
"gatsby-source-filesystem": "1.5.39",
"gatsby-transformer-json": "1.0.20",
"gatsby-transformer-remark": "1.7.44",
"gh-pages": "1.0.0",
"lodash": "4.17.21",
"lodash-es": "4.17.14",
"lodash-webpack-plugin": "0.11.4",
"node-sass": "7.0.0",
"qs": "6.6.0",
"react": "16.7.0-alpha.2",
"react-dom": "16.7.0-alpha.2",
"react-helmet": "5.2.0",
"react-icons": "3.2.2",
"react-router": "4.3.1",
"react-share": "2.4.0",
"react-twitter-widgets": "1.7.1",
"remove-markdown": "0.3.0"
},
"devDependencies": {
"atob": "2.1.2",
"cli-glob": "0.1.0",
"eslint": "5.9.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-sort-imports-es6-autofix": "0.3.0",
"fs-extra": "7.0.1",
"glob": "7.1.3",
"multispinner": "0.2.1",
"node-fetch": "3.1.1",
"prettier": "1.15.2",
"remark-cli": "4.0.0",
"remark-preset-lint-recommended": "3.0.1",
"strict-uri-encode": "2.0.0",
"stylefmt": "6.0.0",
"write-good": "0.11.3"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}