-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.35 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
{
"name": "@phntms/next-gtm",
"description": "A lightweight Next library to implement custom Google Tag Manager events.",
"version": "0.3.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/phantomstudios/next-gtm#readme",
"repository": {
"type": "git",
"url": "https://github.com/phantomstudios/next-gtm.git"
},
"bugs": {
"url": "https://github.com/phantomstudios/next-gtm/issues"
},
"keywords": [
"analytics",
"googletagmanager",
"gtm",
"lightweight",
"next",
"nextjs",
"react",
"tagmanager",
"typescript"
],
"scripts": {
"build": "tsc",
"build:types": "tsc --emitDeclarationOnly",
"prepublishOnly": "npm run build",
"test": "jest --verbose",
"test:watch": "jest --verbose --watch",
"coverage": "jest --coverage",
"lint": "NODE_ENV=test npm-run-all --parallel lint:*",
"lint:js": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:format": "prettier \"**/*.{md,html,yaml,yml}\" --check",
"lint:type-check": "tsc --noEmit",
"fix": "npm-run-all --sequential fix:*",
"fix:js": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"fix:format": "prettier \"**/*.{md,html,yaml,yml}\" --write",
"depcheck": "npx npm-check --update"
},
"author": "Paulo Ferreira Jorge (paulo.jorge@phntms.com)",
"license": "MIT",
"peerDependencies": {
"next": ">=11.0.1",
"react": ">=17.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^5.0.3",
"@types/jest": "^29.5.2",
"@types/react": "^18.2.9",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"browser-env": "^3.2.6",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.0.1",
"next": "^13.4.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": ">=17.0.2",
"ts-jest": "^26.1.0",
"typescript": "^4.1.5"
},
"dependencies": {
"@phntms/react-gtm": "^0.1.1"
}
}