-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
109 lines (109 loc) · 3.41 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
{
"name": "@rollbar/react",
"version": "0.12.0-beta",
"description": "Effortlessly track and debug errors in your React applications with Rollbar. This package includes advanced error tracking features and a set of React-specific enhancements to help you identify and fix issues more quickly.",
"main": "lib",
"module": "dist",
"bundles": {
"browser": "bundles/browser.umd.js"
},
"sideEffects": false,
"directories": {
"lib": "dist"
},
"types": "index.d.ts",
"files": [
"dist",
"lib",
"bundles",
"index.d.ts"
],
"scripts": {
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.mjs,.cjs,.ts,.tsx",
"lint:examples": "ts-node scripts/foreach-example.ts npx eslint . --ext .js,.jsx,.mjs,.cjs,.ts,.tsx",
"lint:all": "npm run lint && npm run lint:examples",
"install:all": "node scripts/install-all.js",
"clean:build": "rimraf dist lib bundles",
"clean:all": "ts-node scripts/clean.ts",
"build:files": "rollup --config",
"build": "npm run clean:build && npm run build:files",
"build:examples": "ts-node scripts/foreach-example.ts npm run build",
"build:all": "npm run build && npm run build:examples",
"yalc:pub": "yalc publish --sig --push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rollbar/rollbar-react.git"
},
"keywords": [
"react",
"rollbar",
"error",
"tracking",
"debugging",
"monitoring"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/rollbar/rollbar-react/issues"
},
"homepage": "https://github.com/rollbar/rollbar-react#readme",
"dependencies": {
"tiny-invariant": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.23.10",
"@babel/eslint-plugin": "^7.23.5",
"@babel/node": "^7.23.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"fast-check": "^3.15.1",
"glob": "^10.3.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"prop-types": "^15.8.1",
"react": "^17",
"react-dom": "^17",
"regenerator-runtime": "^0.14.1",
"rimraf": "^5.0.5",
"rollbar": "^2.26.4",
"rollup": "^4.12.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-preserve-directives": "^0.4.0",
"semver": "^7.6.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5",
"yalc": "^1.0.0-pre.53"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "16.x || 17.x || 18.x",
"rollbar": "^2.26.4"
}
}