-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.3 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
{
"name": "@pittica/gatsby-plugin-hubspot",
"private": false,
"description": "HubSpot plugin for GatsbyJS.",
"version": "1.1.0",
"author": {
"name": "Lucio Benini",
"email": "info@pittica.com",
"url": "https://pittica.com"
},
"bugs": {
"url": "https://github.com/pittica/gatsby-plugin-hubspot/issues"
},
"deprecated": false,
"homepage": "https://github.com/pittica/gatsby-plugin-hubspot",
"keywords": [
"gatsby",
"gatsby-plugin",
"hubspot"
],
"dependencies": {
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"babel-preset-gatsby-package": "^2.15.0",
"cpx": "^1.5.0",
"prettier": "^2.6.2",
"react-scripts": "^5.0.1"
},
"peerDependencies": {
"gatsby": "^3.0.0 || ^4.0.0"
},
"scripts": {
"test": "react-scripts test",
"build": "rimraf ./dist && mkdirp ./dist && babel src --out-dir dist --copy-files && cpx {package.json,README.md,LICENSE} ./dist"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pittica/gatsby-plugin-hubspot.git"
},
"eslintConfig": {
"extends": "react-app"
},
"config": {
"access": "public"
},
"babel": {
"presets": [
"babel-preset-gatsby-package"
]
}
}