forked from andrezimpel/gatsby-plugin-gdpr-cookies
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.44 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@mobile-reality/gatsby-plugin-gdpr-cookies",
"description": "Gatsby plugin to add google analytics, google tag manager facebook pixel, tik tok pixel, hotjar, hubspot in a gdpr form to your site. Consent coming soon.",
"version": "0.2.5",
"author": "Mobile Reality <[email protected]> (https://mobilereality.pl)",
"contributors": [
{
"name": "@irekrog",
"url": "https://github.com/irekrog"
},
{
"name": "Andre Zimpel <[email protected]>",
"url": "https://github.com/andrezimpel"
}
],
"bugs": {
"url": "https://github.com/MobileReality/gatsby-plugin-gdpr-cookies/issues"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"minimatch": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@testing-library/react": "^11.1.0",
"babel-eslint": "^10.1.0",
"babel-preset-gatsby-package": "^0.5.3",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.12.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"lodash": "^4.17.20",
"prettier": "^2.1.2"
},
"homepage": "https://github.com/MobileReality/gatsby-plugin-gdpr-cookies#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"google analytics",
"facebook pixel",
"google tag manager",
"gdpr cookies",
"dsgvo",
"cookies",
"cookie consent",
"tik tok",
"tiktok",
"hotjar",
"hubspot"
],
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"peerDependencies": {
"gatsby": "^2.24.77 || ^3.0.0 || ^4.0.0 || ^5.0.0",
"react": "^16.13.1 || ^17.0.1 || ^18",
"react-dom": "^16.13.1 || ^17.0.1 || ^18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MobileReality/gatsby-plugin-gdpr-cookies.git"
},
"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__",
"format": "eslint ./src --ext js,jsx --fix"
},
"engines": {
"node": ">=16.0.0"
}
}