forked from grafana/k6-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.58 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
{
"name": "k6-docs",
"description": "",
"version": "0.1.0",
"private": true,
"scripts": {
"build:gatsby": "gatsby build --prefix-paths",
"build:storybook": "NODE_ENV=production build-storybook --static-dir static --output-dir public/storybook",
"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",
"storybook": "NODE_ENV=production start-storybook --port 8001 --static-dir public,static",
"lint": "eslint src/",
"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": {
"@storybook/react": "^5.2.5",
"algoliasearch": "^3.35.1",
"classnames": "^2.2.6",
"date-fns": "^2.7.0",
"dateformat": "^3.0.3",
"dotenv": "^8.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"formik": "^1.5.8",
"gatsby": "^2.15.35",
"gatsby-image": "^2.2.27",
"gatsby-plugin-algolia": "^0.5.0",
"gatsby-plugin-catch-links": "^2.1.24",
"gatsby-plugin-google-analytics": "^2.1.35",
"gatsby-plugin-manifest": "^2.2.21",
"gatsby-plugin-offline": "^3.0.14",
"gatsby-plugin-prefetch-google-fonts": "^1.4.3",
"gatsby-plugin-react-helmet": "^3.1.11",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-remove-trailing-slashes": "^2.1.10",
"gatsby-plugin-resolve-src": "^2.0.0",
"gatsby-plugin-s3": "^0.3.2",
"gatsby-plugin-sharp": "^2.2.29",
"gatsby-plugin-sitemap": "^2.2.26",
"gatsby-remark-copy-linked-files": "^2.1.36",
"gatsby-remark-images": "^3.1.30",
"gatsby-remark-prismjs": "^3.3.18",
"gatsby-remark-relative-images": "^0.2.3",
"gatsby-source-filesystem": "^2.1.31",
"gatsby-transformer-json": "^2.2.16",
"gatsby-transformer-remark": "^2.6.28",
"gatsby-transformer-sharp": "^2.2.21",
"google-maps-react": "^2.0.2",
"intersection-observer": "^0.7.0",
"lodash": "^4.17.15",
"prismjs": "^1.17.1",
"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": "^5.2.1",
"react-id-swiper": "^2.3.2",
"react-instantsearch-dom": "^6.2.0",
"react-paginate": "^6.3.0",
"react-share": "^3.0.1",
"react-sticky": "^6.0.3",
"script-loader": "^0.7.2",
"smooth-scroll": "^16.1.2",
"swiper": "^5.0.4",
"video.js": "^7.6.6",
"yarn": "^1.22.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@svgr/webpack": "^4.3.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"broken-link-checker": "^0.7.8",
"concurrently": "^5.0.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"glob": "^7.1.4",
"husky": "^3.0.8",
"lint-staged": "^9.4.2",
"sass": "1.23.0",
"sass-loader": "^8.0.0",
"sass-resources-loader": "^2.0.1",
"url-loader": "^2.2.0",
"wait-on": "^4.0.0"
},
"lint-staged": {
"src/**/*.js": [
"eslint"
]
}
}