forked from hdoro/gatsby-source-mailchimp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "@solublestudio/gatsby-source-mailchimp",
"version": "0.0.8",
"description": "Source plugin to fetch campaigns from Mailchimp into Gatsby",
"author": "Soluble Studio <@solublestudio>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hcavalieri/gatsby-source-mailchimp/issues"
},
"homepage": "https://github.com/hcavalieri/gatsby-source-mailchimp",
"repository": {
"type": "git",
"url": "https://github.com/solublestudio/gatsby-source-mailchimp"
},
"main": "gatsby-node.js",
"files": [
"dist"
],
"scripts": {
"precommit": "tsc",
"build": "tsc --outDir dist",
"type-check": "tsc --noEmit",
"format": "prettier --write src/**/*.{ts,tsx,js,jsx}",
"postversion": "git push --follow-tags && ./publish.sh"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source",
"mailchimp"
],
"dependencies": {
"axios": "^1.7.7"
},
"devDependencies": {
"@types/node": "^10.12.2",
"husky": "^1.1.3",
"prettier": "^1.14.3",
"pretty-quick": "^1.8.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.1.6"
},
"peerDependencies": {
"gatsby": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}