forked from MauricioRobayo/nextjs-google-analytics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.61 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
{
"name": "nextjs-google-analytics-gtm",
"version": "1.1.12",
"description": "Google Analytics for Next.js with support for GTM server container",
"main": "dist/index.js",
"sideEffects": false,
"scripts": {
"lint": "eslint src --fix",
"build": "del-cli dist && tsc",
"watch": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"gtag",
"google analytics",
"next.js",
"analytics",
"google tag manager",
"gtm",
"ga"
],
"contributors": [
"Mauricio Robayo",
"Emiliano García-López"
],
"license": "MIT",
"devDependencies": {
"@types/gtag.js": "^0.0.8",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.40",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"del-cli": "^4.0.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.3",
"jest": "^27.5.1",
"next": "^12.1.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.1.3",
"ts-lib": "^0.0.5",
"typescript": "^4.6.2"
},
"peerDependencies": {
"next": ">=11.0.0",
"react": ">=17.0.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EmilianoGarciaLopez/nextjs-google-analytics-GTM.git"
},
"bugs": {
"url": "https://github.com/EmilianoGarciaLopez/nextjs-google-analytics-GTM/issues"
},
"homepage": "https://github.com/EmilianoGarciaLopez/nextjs-google-analytics-GTM#readme"
}