-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 4.42 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 4.42 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
{
"name": "browser-sdk",
"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": "node scripts/dev-server.ts",
"release": "scripts/cli release",
"version": "scripts/cli version",
"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 ./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 ./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.1",
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
"@playwright/test": "1.56.1",
"@swc/core": "1.15.3",
"@types/chrome": "0.1.31",
"@types/connect-busboy": "1.0.3",
"@types/cors": "2.8.19",
"@types/express": "5.0.5",
"@types/jasmine": "3.10.18",
"@types/node": "24.10.1",
"@types/node-forge": "1.3.14",
"ajv": "8.17.1",
"browserstack-local": "1.5.8",
"chrome-webstore-upload": "4.0.3",
"connect-busboy": "1.0.0",
"cors": "2.8.5",
"emoji-name-map": "2.0.3",
"eslint": "9.39.1",
"eslint-module-utils": "2.12.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jasmine": "4.2.2",
"eslint-plugin-jsdoc": "61.4.1",
"eslint-plugin-unicorn": "62.0.0",
"express": "5.1.0",
"globals": "16.5.0",
"html-webpack-plugin": "5.6.5",
"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.3",
"minimatch": "10.1.1",
"node-forge": "1.3.2",
"prettier": "3.7.3",
"puppeteer": "24.31.0",
"swc-loader": "0.2.6",
"terser-webpack-plugin": "5.3.14",
"ts-loader": "9.5.4",
"tsconfig-paths-webpack-plugin": "4.2.0",
"typedoc": "0.28.15",
"typescript": "5.9.3",
"typescript-eslint": "8.48.0",
"webpack": "5.103.0",
"webpack-cli": "6.0.1",
"webpack-dev-middleware": "7.4.5"
},
"resolutions": {
"puppeteer-core@npm:21.11.0/ws": "8.17.1"
},
"volta": {
"node": "24.11.1",
"yarn": "4.12.0"
},
"packageManager": "yarn@4.12.0"
}