-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
99 lines (99 loc) · 3.67 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
{
"name": "browser-sdk",
"description": "browser SDK",
"private": true,
"workspaces": [
"packages/*",
"developer-extension",
"performances"
],
"scripts": {
"postinstall": "scripts/cli init_submodule",
"build": "lerna run build --stream",
"build:bundle": "lerna run build:bundle --stream",
"format": "prettier --check .",
"lint": "scripts/cli lint .",
"typecheck": "scripts/cli typecheck . && scripts/cli typecheck developer-extension",
"dev": "node scripts/dev-server.js",
"release": "scripts/cli release",
"version": "scripts/cli version",
"test": "yarn test:unit:watch",
"test:unit": "karma start ./test/unit/karma.local.conf.js",
"test:unit:watch": "yarn test:unit --no-single-run",
"test:unit:bs": "node ./scripts/test/bs-wrapper.js karma start test/unit/karma.bs.conf.js",
"test:e2e": "yarn build && (cd test/app && rm -rf node_modules && yarn && yarn build) && wdio test/e2e/wdio.local.conf.ts",
"test:e2e:bs": "yarn build && (cd test/app && rm -rf node_modules && yarn && yarn build) && node ./scripts/test/bs-wrapper.js wdio test/e2e/wdio.bs.conf.ts",
"test:e2e:developer-extension": "yarn build && wdio test/e2e/wdio.developer-extension.conf.ts",
"test:compat:tsc": "scripts/cli check_typescript_compatibility",
"test:compat:ssr": "scripts/cli check_server_side_rendering_compatibility",
"rum-events-format:sync": "scripts/cli update_submodule && scripts/cli build_json2type && node scripts/generate-schema-types.js",
"woke": "scripts/cli woke"
},
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
"@types/chrome": "0.0.283",
"@types/connect-busboy": "1.0.3",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/jasmine": "3.10.18",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@wdio/browserstack-service": "8.40.6",
"@wdio/cli": "8.40.6",
"@wdio/jasmine-framework": "8.40.6",
"@wdio/junit-reporter": "8.40.6",
"@wdio/local-runner": "8.40.6",
"@wdio/spec-reporter": "8.40.6",
"ajv": "6.12.6",
"browserstack-local": "1.5.5",
"chrome-webstore-upload": "3.1.4",
"connect-busboy": "1.0.0",
"cors": "2.8.5",
"emoji-name-map": "1.2.9",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-module-utils": "2.12.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jasmine": "4.2.2",
"eslint-plugin-jsdoc": "50.5.0",
"eslint-plugin-local-rules": "3.0.2",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-unicorn": "56.0.0",
"express": "4.21.1",
"glob": "11.0.0",
"html-webpack-plugin": "5.6.3",
"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": "8.1.9",
"minimatch": "10.0.1",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"puppeteer": "23.8.0",
"terser-webpack-plugin": "5.3.10",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths-webpack-plugin": "4.2.0",
"typescript": "5.6.3",
"webdriverio": "8.40.6",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"webpack-dev-middleware": "7.4.2"
},
"resolutions": {
"puppeteer-core@npm:21.11.0/ws": "8.17.1"
},
"volta": {
"node": "22.11.0",
"yarn": "1.22.22"
},
"packageManager": "[email protected]"
}