forked from build-trust/ockam-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.15 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
{
"name": "ockam-doc-generator",
"private": true,
"description": "Ockam documentation generator",
"author": "MasterBorn (https://github.com/masterborn/)",
"contributors": [
"Łukasz Miedziński"
],
"version": "0.0.1",
"license": "UNLICENSED",
"main": "n/a",
"scripts": {
"start": "gatsby develop",
"build": "gatsby build --prefix-paths",
"serve": "gatsby serve",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"format": "prettier --write src/**/*.{js,jsx}",
"clean": "gatsby clean"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@emotion/core": "10.0.28",
"@emotion/is-prop-valid": "0.8.8",
"@emotion/styled": "10.0.27",
"@mdx-js/loader": "1.6.5",
"@mdx-js/mdx": "1.6.5",
"@mdx-js/react": "1.6.5",
"@n8tb1t/use-scroll-position": "1.0.43",
"@svgr/webpack": "5.5.0",
"algoliasearch": "4.3.0",
"body-scroll-lock": "2.7.1",
"cross-fetch": "3.0.6",
"dotenv": "8.2.0",
"emotion": "10.0.27",
"emotion-icons": "1.0.0",
"emotion-theming": "10.0.27",
"gatsby": "2.30.3",
"gatsby-image": "2.4.7",
"gatsby-link": "2.2.31",
"gatsby-plugin-algolia": "0.5.0",
"gatsby-plugin-emotion": "4.3.4",
"gatsby-plugin-gtag": "1.0.13",
"gatsby-plugin-layout": "1.3.4",
"gatsby-plugin-mdx": "1.2.15",
"gatsby-plugin-meta-redirect": "1.1.1",
"gatsby-plugin-page-creator": "2.3.9",
"gatsby-plugin-react-helmet": "3.3.4",
"gatsby-plugin-sharp": "2.6.31",
"gatsby-plugin-sitemap": "2.4.5",
"gatsby-plugin-svgr": "2.1.0",
"gatsby-plugin-webfonts": "1.1.4",
"gatsby-redirect-from": "0.2.4",
"gatsby-remark-copy-linked-files": "2.3.13",
"gatsby-remark-images": "3.3.28",
"gatsby-source-filesystem": "2.3.11",
"gatsby-source-lever": "2.8.0",
"gatsby-transformer-remark": "2.8.15",
"gatsby-transformer-sharp": "2.5.14",
"graphql": "14.6.0",
"is-absolute-url": "3.0.3",
"lodash": "4.17.19",
"neat-csv": "5.2.0",
"node-fetch": "2.6.1",
"polished": "3.6.4",
"prism-react-renderer": "1.1.1",
"prismjs": "^1.23.0",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-emotion": "10.0.0",
"react-focus-lock": "2.3.1",
"react-ga": "3.3.0",
"react-google-recaptcha": "2.1.0",
"react-helmet": "5.2.1",
"react-instantsearch-dom": "6.5.0",
"react-scrollbars-custom": "4.0.25",
"react-share": "4.2.0",
"react-spring": "8.0.27",
"remark-slug": "6.0.0",
"resize-observer": "1.0.0",
"slugify": "1.4.0",
"styled-system": "5.1.5",
"use-is-in-viewport": "1.0.9",
"validate.js": "0.13.1",
"yargs-parser": "13.1.2"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jest": "23.13.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "2.5.1",
"gatsby-plugin-remove-trailing-slashes": "2.3.5",
"husky": "4.2.5",
"prettier": "1.19.1",
"pretty-quick": "2.0.1"
}
}