forked from KK4ito/react-tracking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.46 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.46 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "react-tracking",
"version": "9.3.2",
"description": "Declarative tracking for React apps.",
"keywords": [
"declarative",
"layer",
"metrics",
"nyt",
"react",
"tracking"
],
"homepage": "https://github.com/nytimes/react-tracking",
"repository": {
"type": "git",
"url": "git+https://github.com/nytimes/react-tracking"
},
"license": "Apache-2.0",
"author": "Jeremy Gayed <https://github.com/tizmagik>",
"contributors": [
{
"name": "Nicole Baram",
"email": "nicole.baram@nytimes.com",
"url": "https://github.com/nicolehollyNYT"
},
{
"name": "Oleh Ziniak",
"email": "oleh.ziniak@nytimes.com",
"url": "https://github.com/oziniak"
},
{
"name": "Ivan Kravchenko",
"email": "ivan@kravchenko.rocks",
"url": "https://github.com/ivankravchenko"
},
{
"name": "Jeremy Gayed",
"email": "jeremy.gayed@gmail.com",
"url": "https://github.com/tizmagik"
},
{
"name": "Lukasz Szmit",
"email": "lukasz.szmit@workday.com",
"url": "https://github.com/lszm"
},
{
"name": "Bryan Gergen",
"email": "bryangergen@gmail.com",
"url": "https://github.com/bgergen"
},
{
"name": "Kevin Lien",
"email": "k4ito@outlook.com",
"url": "https://github.com/KK4ito"
}
],
"files": [
"build"
],
"sideEffects": false,
"main": "build/index.js",
"scripts": {
"build": "babel --out-dir build src --ignore src/__tests__ --source-maps --delete-dir-on-start --minified --no-comments",
"build:watch": "npm run build -- --watch",
"lint": "eslint ./src",
"prepare": "node .husky/install.mjs && npm run build && npm run lint && npm run test",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write --config ./.prettierrc.json --config-precedence prefer-file"
]
},
"dependencies": {
"deepmerge": "^4.3.1",
"hoist-non-react-statics": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/eslint-parser": "^7.28.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.28.0",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-runtime": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"prop-types": "^15.8.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-test-renderer": "^19.1.0",
"regenerator-runtime": "^0.14.1"
},
"peerDependencies": {
"prop-types": "^15.x",
"react": "^19.1.0"
},
"optionalDependencies": {
"fsevents": "*"
},
"engines": {
"node": ">=16.9",
"npm": ">=8.0.0"
}
}