-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·72 lines (72 loc) · 2.08 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
{
"name": "@superside-oss/partytown-gtm-pkg",
"version": "0.0.0",
"license": "MIT",
"author": "Slawek Kolodziej <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/superside-oss/partytown-gtm-plugin"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.cjs"
}
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "yarn eslint --fix",
"gtm-plugin": "yarn workspace @superside-oss/partytown-gtm",
"build": "yarn gtm-plugin build",
"test": "yarn gtm-plugin test"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@playwright/test": "^1.31.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"autoprefixer": "^10.4.14",
"commitizen": "^4.2.4",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.10.2",
"husky": "^8.0.1",
"jsdom": "^21.1.1",
"lint-staged": "^13.2.0",
"prettier": "2.7.1",
"semantic-release": "^21.0.5",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
},
"workspaces": [
"packages/partytown-gtm",
"packages/integration/*"
],
"packageManager": "[email protected]"
}