-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "gatsby-plugin-google-gtag-cookieconsent",
"version": "0.0.6",
"main": "index.js",
"author": "Ulrich Herzkamp",
"keywords": [
"gatsby",
"gatsby-plugin",
"consent",
"gdpr",
"cookie consent",
"google-analytics",
"google gtag"
],
"homepage": "https://github.com/astoiccoder/gatsby-plugin-google-gtag-cookieconsent",
"repository": {
"type": "git",
"url": "https://github.com/astoiccoder/gatsby-plugin-google-gtag-cookieconsent.git"
},
"license": "MIT",
"scripts": {
"build": "babel src --out-dir . --ignore \"**/__tests__\"",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore \"**/__tests__\""
},
"dependencies": {
"vanilla-cookieconsent": "^3.0.1",
"@babel/runtime": "^7.24.7",
"minimatch": "^3.1.2"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"babel-preset-gatsby-package": "^3.13.1",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^4.13.1"
},
"peerDependencies": {
"gatsby": "^5.0.0",
"react": "^18.0.0 || ^0.0.0",
"react-dom": "^18.0.0 || ^0.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}