-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 854 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
{
"name": "gatsby-plugin-google-gtag-cookieconsent",
"version": "0.0.1",
"main": "index.js",
"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.0-rc.16",
"@babel/runtime": "^7.23.1",
"minimatch": "^9.0.3"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"babel-preset-gatsby-package": "^3.13.0-next.0",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^4.13.0-next.0"
},
"peerDependencies": {
"gatsby": "^5.0.0-next",
"react": "^18.0.0 || ^0.0.0",
"react-dom": "^18.0.0 || ^0.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}