-
Notifications
You must be signed in to change notification settings - Fork 222
/
package.json
108 lines (108 loc) · 4.11 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
103
104
105
106
107
108
{
"name": "k6-docs",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.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": "cd docs && make docs",
"start:gatsby": "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",
"format": "prettier --check '**/*.{js,jsx,css,scss}'",
"format:fix": "prettier --write '**/*.{js,jsx,css,scss}'",
"lint": "eslint --ext .js,.jsx .",
"lint:fix": "eslint --ext .js,.jsx --fix .",
"lint:examples": "eslint -c ./src/data/markdown/.eslintrc.js src/data/markdown",
"lint:examples:fix": "eslint -c ./src/data/markdown/.eslintrc.js --fix src/data/markdown",
"lint:prose": "./node_modules/.bin/vale --glob='**/{docs,translated-guides/en}/**/*.md' ./src/data/markdown",
"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",
"check:broken-links": "linkinator --config linkinator.config.json",
"archive-version": "./archive-js-api-version.sh",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^3.1.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@sentry/gatsby": "^7.21.1",
"@tmttn/gatsby-plugin-linkedin-insight": "^5.2.0",
"algoliasearch": "^4.14.2",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"dateformat": "^4.6.3",
"dotenv": "^10.0.0",
"gatsby": "^4.24.8",
"gatsby-plugin-algolia": "^0.26.0",
"gatsby-plugin-catch-links": "^4.24.0",
"gatsby-plugin-google-analytics": "^4.24.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-google-gtag": "^4.24.0",
"gatsby-plugin-google-tagmanager": "^4.24.0",
"gatsby-plugin-image": "^2.24.0",
"gatsby-plugin-manifest": "^4.24.0",
"gatsby-plugin-mdx": "^3.20.0",
"gatsby-plugin-offline": "^5.24.0",
"gatsby-plugin-resolve-src": "^2.1.0",
"gatsby-plugin-s3": "^0.3.8",
"gatsby-plugin-sass": "^5.24.0",
"gatsby-plugin-sharp": "^4.24.0",
"gatsby-plugin-sitemap": "^5.24.0",
"gatsby-plugin-svgr-svgo": "^2.0.0",
"gatsby-remark-copy-linked-files": "^5.24.0",
"gatsby-remark-images": "^6.24.0",
"gatsby-remark-relative-images": "^2.0.2",
"gatsby-source-filesystem": "^4.24.0",
"gatsby-transformer-json": "^4.24.0",
"gatsby-transformer-sharp": "^4.24.0",
"prism-react-renderer": "^1.3.5",
"prop-types": "^15.8.1",
"qs": "^6.10.1",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-accessible-dropdown-menu-hook": "^3.2.0",
"react-clipboard.js": "^2.0.16",
"react-cookie-banner": "^4.1.0",
"react-dom": "^17.0.2",
"react-hook-form": "^7.43.9",
"react-instantsearch-dom": "^6.38.1",
"react-tooltip": "^4.5.1",
"runes": "^0.4.3",
"sass": "^1.56.1",
"yup": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@ocular-d/vale-bin": "^1.0.29",
"@svgr/webpack": "^6.5.1",
"babel-loader": "^9.1.0",
"broken-link-checker": "^0.7.8",
"concurrently": "^7.6.0",
"eslint": "^8.28.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-mdx": "^1.17.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.2",
"linkinator": "^4.1.1",
"lint-staged": "^13.0.3",
"prettier": "^2.8.0",
"shx": "^0.3.4",
"wait-on": "^6.0.1"
}
}