forked from grafana/k6-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.26 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
{
"name": "k6-docs",
"engines": {
"node": "12.x"
},
"description": "",
"version": "0.1.0",
"private": true,
"scripts": {
"build:gatsby": "gatsby build --prefix-paths",
"build:incremental": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --prefix-paths --log-pages",
"build": "npm run build:gatsby",
"clean": "gatsby clean",
"start": "npm run develop --host=0.0.0.0",
"serve": "gatsby serve --prefix-paths",
"deploy": "./scripts/gatsby-s3-workaround.sh prepare && gatsby-plugin-s3 deploy --yes && ./scripts/cloudfront-invalidate.sh && ./scripts/gatsby-s3-workaround.sh revert",
"predevelop": "test -f ./.env.development || cp ./.env.example ./.env.development",
"develop": "gatsby develop",
"lint": "eslint src/",
"lint:prose": " vale --glob='*.md' ./src/data/markdown",
"lint:fix": "eslint src/ --fix",
"precheck:links": "gatsby build",
"check:links": "concurrently --kill-others -s first \"gatsby serve --port 8000\" \"npm run check:blc\"",
"check:blc": "wait-on tcp:8000 && blc http://localhost:8000 -rof"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.18",
"@mdx-js/react": "^1.6.18",
"@sentry/gatsby": "^5.27.3",
"algoliasearch": "^4.5.1",
"chunk-text": "^2.0.1",
"classnames": "^2.2.6",
"date-fns": "^2.16.1",
"dateformat": "^3.0.3",
"dotenv": "^8.1.0",
"gatsby": "^2.24.73",
"gatsby-image": "^2.4.21",
"gatsby-plugin-algolia": "^0.16.0",
"gatsby-plugin-catch-links": "^2.3.15",
"gatsby-plugin-google-analytics": "^2.3.17",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^2.4.34",
"gatsby-plugin-mdx": "^1.2.46",
"gatsby-plugin-offline": "^3.2.31",
"gatsby-plugin-react-helmet": "^3.3.14",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-remove-trailing-slashes": "^2.3.13",
"gatsby-plugin-resolve-src": "^2.0.0",
"gatsby-plugin-s3": "^0.3.5",
"gatsby-plugin-sass": "^2.3.16",
"gatsby-plugin-sharp": "^2.6.40",
"gatsby-plugin-sitemap": "^2.4.15",
"gatsby-plugin-svgr-svgo": "^1.0.12",
"gatsby-remark-copy-linked-files": "^2.3.19",
"gatsby-remark-images": "^3.3.33",
"gatsby-remark-relative-images": "^2.0.2",
"gatsby-source-filesystem": "^2.3.34",
"gatsby-transformer-json": "^2.4.14",
"gatsby-transformer-sharp": "^2.5.17",
"node-sass": "^4.14.1",
"prism-react-renderer": "^1.1.1",
"prop-types": "^15.7.2",
"qs": "^6.9.1",
"react": "^16.10.2",
"react-clipboard.js": "^2.0.16",
"react-cookie-banner": "^4.0.0",
"react-dom": "^16.10.2",
"react-helmet": "^6.1.0",
"react-instantsearch-dom": "^6.2.0",
"react-sticky": "^6.0.3",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@svgr/webpack": "^5.4.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"broken-link-checker": "^0.7.8",
"concurrently": "^5.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mdx": "^1.8.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"wait-on": "^5.2.0"
}
}