forked from grafana/k6-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.74 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
{
"name": "k6-docs",
"engines": {
"node": ">=12.13.0"
},
"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": "shx test -f ./.env.development || shx cp ./.env.example ./.env.development",
"develop": "gatsby develop",
"lint": "eslint src/ -c .eslintrc",
"lint:prose": "vale --glob='**/{docs,translated-guides/en}/**/*.md' ./src/data/markdown",
"lint:fix": "eslint src/ --fix -c .eslintrc",
"lint:examples": "./node_modules/.bin/eslint src/data/markdown",
"lint:examples:fix": "./node_modules/.bin/eslint src/data/markdown --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",
"archive-version": "./archive-js-api-version.sh",
"prepare": "husky install"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@sentry/gatsby": "^5.27.3",
"algoliasearch": "^4.9.1",
"classnames": "^2.3.1",
"date-fns": "^2.22.1",
"dateformat": "^4.5.1",
"dotenv": "^10.0.0",
"gatsby": "^3.6.2",
"gatsby-image": "^3.6.0",
"gatsby-plugin-algolia": "^0.20.1",
"gatsby-plugin-catch-links": "^3.6.0",
"gatsby-plugin-google-analytics": "^3.6.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^3.6.0",
"gatsby-plugin-mdx": "^2.6.0",
"gatsby-plugin-offline": "^4.6.0",
"gatsby-plugin-react-helmet": "^4.6.0",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-resolve-src": "^2.1.0",
"gatsby-plugin-s3": "^0.3.8",
"gatsby-plugin-sass": "^4.6.0",
"gatsby-plugin-sharp": "^3.6.0",
"gatsby-plugin-sitemap": "^3.3.0",
"gatsby-plugin-svgr-svgo": "^1.2.2",
"gatsby-remark-copy-linked-files": "^4.3.0",
"gatsby-remark-images": "^5.3.0",
"gatsby-remark-relative-images": "^2.0.2",
"gatsby-source-filesystem": "^3.6.0",
"gatsby-transformer-json": "^3.6.0",
"gatsby-transformer-sharp": "^3.6.0",
"prism-react-renderer": "^1.2.1",
"prop-types": "^15.7.2",
"qs": "^6.10.1",
"query-string": "^7.0.0",
"react": "^17.0.2",
"react-accessible-dropdown-menu-hook": "^2.3.0",
"react-clipboard.js": "^2.0.16",
"react-cookie-banner": "^4.1.0",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-instantsearch-dom": "^6.11.0",
"react-sticky": "^6.0.3",
"runes": "^0.4.3",
"sass": "^1.34.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@svgr/webpack": "^5.5.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"broken-link-checker": "^0.7.8",
"concurrently": "^5.3.0",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-mdx": "^1.13.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.4.1",
"shx": "^0.3.3",
"wait-on": "^5.3.0"
},
"lint-staged": {
"*.md": "./node_modules/.bin/eslint -c ./src/data/markdown/.eslintrc.js"
}
}