-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.59 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 4.59 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
{
"name": "browser-sdk",
"version": "6.31.0",
"description": "browser SDK",
"private": true,
"workspaces": [
"packages/*",
"developer-extension",
"test/e2e",
"test/performance"
],
"type": "module",
"scripts": {
"postinstall": "scripts/cli init_submodule",
"build": "yarn workspaces foreach --all --parallel --topological run build",
"build:bundle": "yarn workspaces foreach --all --parallel run build:bundle",
"build:apps": "node scripts/build/build-test-apps.ts",
"build:docs:json": "typedoc --logLevel Verbose --json ./docs.json",
"build:docs:html": "typedoc --out ./docs",
"pack": "yarn workspaces foreach --all --parallel --include '@datadog/*' exec yarn pack",
"format": "prettier --check .",
"lint": "NODE_OPTIONS='--max-old-space-size=4096' eslint .",
"typecheck": "tsc -b --noEmit true",
"dev": "yarn dev-server start",
"dev-server": "node scripts/dev-server/index.ts",
"release": "node ./scripts/release/prepare-release.ts --push",
"test": "yarn test:unit:watch",
"test:unit": "karma start ./test/unit/karma.local.conf.js",
"test:script": "node --test --experimental-test-module-mocks './scripts/**/*.spec.*'",
"test:unit:watch": "yarn test:unit --no-single-run",
"test:unit:bs": "node --env-file-if-exists=.env ./scripts/test/bs-wrapper.ts karma start test/unit/karma.bs.conf.js",
"test:e2e:init": "yarn build && yarn build:apps && yarn playwright install chromium --with-deps",
"test:e2e": "playwright test --config test/e2e/playwright.local.config.ts --project chromium",
"test:e2e:bs": "node --env-file-if-exists=.env ./scripts/test/bs-wrapper.ts playwright test --config test/e2e/playwright.bs.config.ts",
"test:e2e:ci": "yarn test:e2e:init && yarn test:e2e",
"test:e2e:ci:bs": "yarn build && yarn build:apps && yarn test:e2e:bs",
"test:compat:tsc": "node scripts/check-typescript-compatibility.ts",
"test:compat:ssr": "scripts/cli check_server_side_rendering_compatibility",
"test:performance": "yarn test:e2e:init && playwright test --config test/performance/playwright.config.ts",
"test:performance:debug": "playwright test --config test/performance/playwright.config.ts --debug",
"test:performance:ui": "playwright test --config test/performance/playwright.config.ts --ui",
"json-schemas:sync": "scripts/cli update_submodule && yarn json-schemas:generate",
"json-schemas:generate": "scripts/cli build_json2type && node scripts/generate-schema-types.ts",
"size": "node scripts/show-bundle-size.ts",
"woke": "scripts/cli woke",
"docs:serve": "typedoc && npx http-server ./docs -p 8080 -o"
},
"devDependencies": {
"@eslint/js": "9.39.3",
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
"@playwright/test": "1.58.2",
"@swc/core": "1.15.11",
"@types/busboy": "1.5.4",
"@types/chrome": "0.1.37",
"@types/cors": "2.8.19",
"@types/express": "5.0.6",
"@types/jasmine": "3.10.19",
"@types/node": "25.3.0",
"@types/node-forge": "1.3.14",
"ajv": "8.18.0",
"browserstack-local": "1.5.10",
"busboy": "1.6.0",
"chrome-webstore-upload": "4.0.3",
"cors": "2.8.6",
"emoji-name-map": "2.0.3",
"eslint": "9.39.3",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-module-utils": "2.12.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jasmine": "4.2.2",
"eslint-plugin-jsdoc": "62.7.0",
"eslint-plugin-unicorn": "63.0.0",
"express": "5.2.1",
"globals": "17.3.0",
"html-webpack-plugin": "5.6.6",
"http-server": "14.1.1",
"jasmine-core": "3.99.1",
"json-schema-to-typescript": "bcaudan/json-schema-to-typescript#bcaudan/add-readonly-support",
"karma": "6.4.4",
"karma-browserstack-launcher": "1.6.0",
"karma-chrome-launcher": "3.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.2",
"karma-junit-reporter": "2.0.1",
"karma-sourcemap-loader": "0.4.0",
"karma-spec-reporter": "0.0.36",
"karma-webpack": "5.0.0",
"lerna": "9.0.4",
"minimatch": "10.2.4",
"node-forge": "1.3.3",
"prettier": "3.8.1",
"puppeteer": "24.37.5",
"swc-loader": "0.2.7",
"terser-webpack-plugin": "5.3.16",
"ts-loader": "9.5.4",
"tsconfig-paths-webpack-plugin": "4.2.0",
"typedoc": "0.28.17",
"typescript": "5.9.3",
"typescript-eslint": "8.56.0",
"undici": "7.24.0",
"webpack": "5.105.2",
"webpack-cli": "6.0.1",
"webpack-dev-middleware": "7.4.5"
},
"resolutions": {
"puppeteer-core@npm:21.11.0/ws": "8.17.1"
},
"volta": {
"node": "25.6.1",
"yarn": "4.12.0"
},
"packageManager": "[email protected]"
}