This repository has been archived by the owner on Oct 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.51 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
{
"name": "@distributeaid/covid-19-resources-drive-export",
"version": "0.0.0-development",
"description": "Export of the COVID-19 resources Google Docs as a static website",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"postinstall": "check-node-version --package",
"lint": "eslint --ext .js,.ts,.tsx src"
},
"keywords": [
"Distribute Aid",
"COVID-19",
"Aid Workers Guide"
],
"author": "Distribute Aid | https://distributeaid.org/",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/distributeaid/covid-19-resources-drive-export/issues"
},
"homepage": "https://github.com/distributeaid/covid-19-resources-drive-export#readme",
"dependencies": {
"algoliasearch": "4.5.1",
"feather-icons": "4.28.0",
"gatsby-plugin-algolia": "0.12.1",
"gatsby-remark-autolink-headers": "2.3.14",
"googleapis": "60.0.1",
"jsdom": "16.4.0",
"react-instantsearch-dom": "6.7.0",
"snyk": "1.408.0",
"use-debounce": "5.0.1"
},
"snyk": true,
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"devDependencies": {
"@bifravst/code-style": "8.0.118",
"@bifravst/eslint-config-typescript": "5.0.54",
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"@types/react-dom": "16.9.8",
"@types/react-helmet": "6.1.0",
"@types/styled-components": "5.1.3",
"babel-plugin-styled-components": "1.11.1",
"bottleneck": "2.19.5",
"check-node-version": "4.0.3",
"eslint-plugin-react": "7.21.3",
"gatsby": "2.24.67",
"gatsby-cli": "2.12.102",
"gatsby-plugin-react-helmet": "3.3.12",
"gatsby-plugin-react-svg": "3.0.0",
"gatsby-plugin-styled-components": "3.3.12",
"gatsby-plugin-typescript": "2.4.21",
"gatsby-source-filesystem": "2.3.32",
"gatsby-transformer-remark": "2.8.37",
"glob": "7.1.6",
"hast-to-hyperscript": "9.0.0",
"husky": "4.3.0",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"react-dom": "16.13.1",
"react-helmet": "6.1.0",
"sanitize-filename": "1.6.3",
"styled-components": "5.2.0",
"ts-node": "9.0.0",
"typescript": "4.0.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --ext .js,.ts,.tsx"
],
"*.{md,json,yaml,yml,js}": [
"prettier --write"
]
}
}