forked from andrezimpel/gatsby-plugin-gdpr-cookies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
{
"name": "gatsby-plugin-gdpr-cookies",
"description": "Gatsby plugin to add google analytics and facebook pixel in a gdpr form to your site",
"version": "1.0.4",
"author": "Andre Zimpel <[email protected]>",
"bugs": {
"url": "https://github.com/andrezimpel/gatsby-plugin-gdpr-cookies/issues"
},
"dependencies": {
"@babel/runtime": "^7.7.2",
"react-ga": "^2.7.0",
"universal-cookie": "^4.0.2"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@testing-library/react": "^9.3.2",
"babel-preset-gatsby-package": "^0.2.11",
"cross-env": "^6.0.3"
},
"homepage": "https://github.com/andrezimpel/gatsby-plugin-gdpr-cookies#readme",
"keywords": [
"gatsby",
"gatsby-plugin",
"google analytics",
"facebook pixel"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"gatsby": "^2.0.0",
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/andrezimpel/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__"
},
"engines": {
"node": ">=8.0.0"
}
}