-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "gatsby-plugin-hubspot",
"version": "2.0.0",
"description": "Gatsby plugin to add a HubSpot embed code to your site.",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir . --ignore \"**/__tests__\"",
"prepare": "cross-env NODE_ENV=production npm run build",
"prettier": "prettier --write .",
"test": "jest",
"watch": "babel -w src --out-dir . --ignore \"**/__tests__\""
},
"author": {
"name": "Austin Gordon",
"email": "[email protected]",
"url": "https://github.com/AustinLeeGordon"
},
"license": "MIT",
"keywords": [
"gatsby",
"gatsby-plugin",
"hubspot"
],
"repository": {
"type": "git",
"url": "https://github.com/hutsoninc/gatsby-plugin-hubspot"
},
"dependencies": {
"@babel/runtime": "^7.15.4"
},
"devDependencies": {
"@austinleegordon/prettier-config": "^1.0.0",
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"babel-preset-gatsby-package": "^2.0.0",
"cross-env": "^7.0.3",
"jest": "^24.9.0",
"prettier": "2.4.0",
"react": "^16.9.0"
},
"peerDependencies": {
"gatsby": "^4.0.0-next",
"react": "^16.9.0 || ^17.0.0",
"react-dom": "^16.9.0 || ^17.0.0"
},
"engines": {
"node": ">=14.15.0"
},
"prettier": "@austinleegordon/prettier-config"
}