-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
119 lines (119 loc) · 3.28 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
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
{
"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": "[email protected]",
"url": "https://github.com/nicolehollyNYT"
},
{
"name": "Oleh Ziniak",
"email": "[email protected]",
"url": "https://github.com/oziniak"
},
{
"name": "Ivan Kravchenko",
"email": "[email protected]",
"url": "https://github.com/ivankravchenko"
},
{
"name": "Jeremy Gayed",
"email": "[email protected]",
"url": "https://github.com/tizmagik"
},
{
"name": "Lukasz Szmit",
"email": "[email protected]",
"url": "https://github.com/lszm"
},
{
"name": "Bryan Gergen",
"email": "[email protected]",
"url": "https://github.com/bgergen"
}
],
"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": "husky install && 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.2.2",
"hoist-non-react-statics": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "7.19.3",
"@babel/plugin-proposal-object-rest-spread": "^7.19.4",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.25.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"jest": "^29.2.0",
"jest-environment-jsdom": "^29.2.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"raf-polyfill": "^1.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"regenerator-runtime": "^0.13.10"
},
"peerDependencies": {
"prop-types": "^15.x",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"optionalDependencies": {
"fsevents": "*"
},
"engines": {
"node": ">=16.9",
"npm": ">=8.0.0"
}
}