-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
68 lines (68 loc) · 1.68 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
{
"name": "nextjs-google-analytics",
"version": "0.0.0",
"description": "Google Analytics for Next.js",
"main": "dist/index.js",
"sideEffects": false,
"scripts": {
"lint": "eslint src --fix",
"build": "del-cli dist && tsc",
"watch": "tsc-watch --onSuccess \"yalc push\"",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"gtag",
"google analytics",
"next.js",
"analytics",
"google tag manager",
"gtm",
"ga"
],
"author": "Mauricio Robayo",
"license": "MIT",
"devDependencies": {
"@testing-library/react": "^16.0.0",
"@types/gtag.js": "^0.0.20",
"@types/jest": "^27.4.1",
"@types/react": "^18.0.8",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"del-cli": "^5.1.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.29.4",
"jest": "^27.5.1",
"next": "^14.0.0",
"prettier": "^3.0.0",
"react": "^18.1.0",
"react-test-renderer": "^18.1.0",
"ts-jest": "^27.1.4",
"ts-lib": "^0.0.5",
"tsc-watch": "^6.0.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"next": ">=11.0.0",
"react": ">=17.0.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/MauricioRobayo/nextjs-google-analytics.git"
},
"bugs": {
"url": "https://github.com/MauricioRobayo/nextjs-google-analytics/issues"
},
"homepage": "https://github.com/MauricioRobayo/nextjs-google-analytics#readme",
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"release": {
"branches": "main"
}
}