This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.32 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
{
"name": "@eisberg-labs/next-google-analytics",
"version": "5.0.3",
"description": "NextJS React Component for Google analytics 4.",
"main": "lib/index.js",
"module": "esm/index.js",
"sideEffects": false,
"files": [
"lib/",
"esm/"
],
"keywords": [
"nextjs",
"google-analytics",
"universal",
"google",
"analytics"
],
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"homepage": "https://next-google-analytics.amarjanica.com",
"bugs": {
"url": "https://github.com/eisberg-labs/next-google-analytics/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eisberg-labs/next-google-analytics.git"
},
"license": "MIT",
"author": {
"name": "Ana Bujan - Eisberg Labs",
"email": "ana@eisberg-labs.com",
"url": "https://www.eisberg-labs.com"
},
"scripts": {
"build:cjs": "rm -rf lib && tsc",
"build:es": "rm -rf esm && tsc -m esNext --outDir esm",
"build": "npm run build:cjs & npm run build:es",
"lint": "eslint {src,__tests__}/**/* --fix",
"prettier": "prettier --write \"./(src|__tests__)/**/*.(ts|tsx)\"",
"test": "jest"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@babel/preset-typescript": "7.26.0",
"@babel/runtime": "7.26.0",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.3.1",
"@types/jest": "29.5.14",
"@types/node": "20.17.9",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"babel-jest": "29.7.0",
"babel-loader": "9.2.1",
"babel-plugin-dynamic-import-node": "2.3.3",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-testing-library": "6.5.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"next": "13.5.6",
"prettier": "2.8.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"ts-jest": "29.2.5",
"typescript": "5.7.2"
},
"peerDependencies": {
"next": "^13.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}