This repository was archived by the owner on May 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.79 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
{
"name": "@datadog/rum-react-integration",
"version": "1.0.0-alpha",
"private": true,
"license": "Apache-2.0",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "cjs/index.d.ts",
"scripts": {
"build": "run-p build:cjs build:esm build:bundle",
"build:bundle": "rm -rf bundle && webpack --mode=production",
"build:cjs": "rm -rf cjs && tsc -p tsconfig.cjs.json",
"build:esm": "rm -rf esm && tsc -p tsconfig.esm.json",
"format": "prettier --check .",
"lint": "scripts/cli lint .",
"prepare": "run-s build",
"typecheck": "scripts/cli typecheck . && scripts/cli typecheck developer-extension",
"test": "jest"
},
"dependencies": {
"tslib": "^1.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/DataDog/rum-react-integration.git"
},
"peerDependencies": {
"@datadog/browser-rum-core": "^2.15.1",
"react": ">=16",
"react-router-dom": "^5.0.0"
},
"resolutions": {
"@types/react": "16"
},
"devDependencies": {
"@datadog/browser-rum-core": "^2.15.1",
"@testing-library/react": "12.0.0",
"@testing-library/react-hooks": "7.0.1",
"@types/jest": "^26.0.24",
"@types/node": "^16.0.0",
"@types/pako": "1.0.1",
"@types/react": "16",
"@types/react-dom": "16",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"eslint": "7.20.0",
"eslint-config-prettier": "7.2.0",
"history": "4",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"pako": "2.0.3",
"prettier": "2.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "^5.0.0",
"ts-jest": "^27.0.3",
"ts-loader": "8.0.18",
"typescript": "4.1.5",
"webpack": "5.91.0",
"webpack-cli": "^4.7.2"
}
}