-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
71 lines (71 loc) · 3.34 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
{
"name": "@splunk/otel-web-dev-root",
"private": true,
"version": "0.20.0-beta.0",
"--workspaces": "Hardcoded so npm runs workspaces commands in order",
"workspaces": [
"packages/web",
"packages/session-recorder",
"packages/integration-tests"
],
"engines": {
"--": "Versions required for development only (recent enough to use npm workspaces)",
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"compile": "npm run --ws compile --",
"lint": "run-p lint:eslint lint:prettier lint:markdown",
"lint:fix": "run-p lint:eslint:fix lint:prettier:fix lint:markdown:fix",
"lint:eslint": "eslint .",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"lint:prettier": "prettier --ignore-path .gitignore --check '**/*.{json,yml,html,css}'",
"lint:prettier:fix": "npm run lint:prettier -- --write",
"lint:markdown": "markdownlint *.md docs/*.md ",
"lint:markdown:fix": "npm run lint:markdown -- --fix",
"test:integration:local": "npm run --ws --if-present test:integration:local --",
"test:integration:local:all": "npm run --ws --if-present test:integration:local:all --",
"test:integration:local:chrome": "npm run --ws --if-present test:integration:local:chrome --",
"test:integration:local:firefox": "npm run --ws --if-present test:integration:local:firefox --",
"test:integration:local:safari": "npm run --ws --if-present test:integration:local:safari --",
"test:integration:local:all:_execute": "npm run --ws --if-present test:integration:local:all:_execute --",
"test:integration:local:chrome:_execute": "npm run --ws --if-present test:integration:local:chrome:_execute --",
"test:integration:local:firefox:_execute": "npm run --ws --if-present test:integration:local:firefox:_execute --",
"test:integration:local:headlessChrome:_execute": "npm run --ws --if-present test:integration:local:headlessChrome:_execute --",
"test:integration:local:headlessFirefox:_execute": "npm run --ws --if-present test:integration:local:headlessFirefox:_execute --",
"test:integration:local:safari:_execute": "npm run --ws --if-present test:integration:local:safari:_execute --",
"test:integration:remote": "npm run --ws --if-present test:integration:remote --",
"test:performance": "npm run --ws --if-present test:performance --",
"test:unit:ci": "npm run --ws --if-present test:unit:ci --",
"test:unit:ci-node": "npm run --ws --if-present test:unit:ci-node --",
"postversion": "node ./scripts/version-update.mjs",
"version:bump": "npm version --workspaces --include-workspace-root",
"version:check": "node ./scripts/version-check.mjs",
"tag:check": "node ./scripts/tag-check.js",
"size-limit": "size-limit"
},
"devDependencies": {
"@aws-sdk/client-cloudfront": "^3.171.0",
"@aws-sdk/client-s3": "^3.171.0",
"@eslint/js": "^9.13.0",
"@fastify/cors": "^10.0.1",
"@octokit/graphql": "^7.0.1",
"@octokit/request": "^8.1.1",
"@size-limit/file": "^11.1.6",
"@stylistic/eslint-plugin-js": "^2.10.1",
"@stylistic/eslint-plugin-ts": "^2.10.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.12.2",
"dotenv": "^16.3.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-headers": "^1.2.0",
"eslint-plugin-prettier": "^5.2.1",
"fastify": "^5.1.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"size-limit": "^11.1.6",
"typescript": "^5.1.6",
"typescript-eslint": "^8.12.2"
}
}