-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.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
{
"name": "@tymate/react-gtm",
"version": "0.1.3",
"description": "Google Tag Manager integration for React",
"main": "dist/index.js",
"repository": "github.com/tymate/react-gtm",
"author": "Tymate",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"babel-preset-react-app": "^10.0.0",
"rollup": "^2.33.1"
},
"peerDependencies": {
"react": "^17.0.1",
"react-helmet": "^6.1.0"
},
"scripts": {
"build": "rollup -c"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"react-use": "^15.3.4"
},
"publishConfig": {
"access": "public"
}
}