This repository was archived by the owner on Jul 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.49 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.49 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
{
"name": "@brainhubeu/gatsby-docs-kit-start",
"description": "Gatsby-Docs-Kit starter repository",
"version": "0.0.53",
"author": "Brainhub",
"license": "MIT",
"scripts": {
"build": "rm -rf .cache && rm -rf public && gatsby build --prefix-paths",
"develop": "rm -rf .cache && NODE_ENV=development gatsby develop",
"develop:local": "GATSBY_DEVELOPMENT_MODE=local yarn develop",
"seed": "bash tools/seed.sh",
"serve": "export RC_ENV=__RC_ENV__; if [[ \"$RC_ENV\" == 'development' ]]; then yarn develop; else gatsby serve; fi",
"lint": "eslint --ext .jsx,.js .",
"lint:autofix": "eslint --ext .jsx,.js . --fix"
},
"dependencies": {
"@brainhubeu/gatsby-docs-kit": "3.0.8",
"@brainhubeu/react-file-input": "^0.9.20",
"gatsby": "2.20.29",
"gatsby-link": "2.3.0",
"lodash": "^4.17.21",
"react-fa": "^5.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-react-constant-elements": "^7.27.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@babel/preset-stage-1": "^7.8.3",
"@babel/register": "^7.27.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^6.8.0",
"eslint-config-brainhub": "^1.14.0",
"gatsby-plugin-google-analytics": "2.2.2",
"gh-pages": "^2.2.0",
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"peerDependencies": {
"@babel/core": "^7.28.0"
}
}