forked from pavloko/gatsby-plugin-hotjar
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 987 Bytes
/
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
{
"name": "gatsby-plugin-hotjar-tracking",
"version": "1.1.0",
"description": "Gatsby plugin to add Hotjar analytics to your site.",
"keywords": [
"gatsby",
"gatsby-plugin",
"hotjar"
],
"repository": {
"type": "git",
"url": "git+https://github.com/koole/gatsby-plugin-hotjar-tracking.git"
},
"author": "Leon Koole <leon@koole.io>",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"test": "jest"
},
"peerDependencies": {
"gatsby": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"babel-preset-gatsby-package": "^0.12.0",
"cross-env": "^7.0.2",
"jest": "^26.1.0",
"react": "^17.0.1",
"react-test-renderer": "^17.0.1"
},
"dependencies": {
"@babel/runtime": "^7.0.0"
}
}