-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.23 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.23 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
{
"name": "@sentry/sentry-javascript-bundler-plugins",
"version": "0.0.0",
"description": "Sentry Bundler Plugins Monorepo.",
"repository": "git://github.com/getsentry/sentry-javascript-bundler-plugins.git",
"homepage": "https://github.com/getsentry/sentry-javascript-bundler-plugins",
"private": true,
"workspaces": [
"packages/babel-plugin-component-annotate",
"packages/bundler-plugin-core",
"packages/dev-utils",
"packages/e2e-tests",
"packages/esbuild-plugin",
"packages/eslint-configs",
"packages/integration-tests",
"packages/playground",
"packages/rollup-plugin",
"packages/tsconfigs",
"packages/vite-plugin",
"packages/webpack-plugin",
"packages/integration-tests-next",
"packages/integration-tests-next/fixtures/rolldown",
"packages/integration-tests-next/fixtures/rollup3",
"packages/integration-tests-next/fixtures/rollup4"
],
"scripts": {
"postinstall": "patch-package",
"build": "nx run-many --target=build --all",
"build:watch": "nx run-many --target=build:watch --all",
"build:graph": "nx graph",
"build:npm": "nx run-many --target=build:npm --all",
"check:types": "nx run-many --target=check:types --all",
"clean": "nx run-many --target=clean --all",
"clean:all": "nx run-many --target=clean:all --all && yarn",
"test": "nx run-many --target=test --all --exclude=@sentry-internal/bundler-plugin-e2e-tests",
"test:all": "nx run-many --target=test --all",
"test:unit": "nx run-many --target=test --all --exclude=@sentry-internal/integration-tests,@sentry-internal/integration-tests-next,@sentry-internal/bundler-plugin-e2e-tests",
"test:integration": "nx run @sentry-internal/integration-tests:test",
"test:integration-next": "nx run @sentry-internal/integration-tests-next:test",
"test:e2e": "nx run @sentry-internal/bundler-plugin-e2e-tests:test",
"lint": "nx run-many --target=lint --all",
"check:formatting": "oxfmt --check .",
"fix:formatting": "oxfmt ."
},
"devDependencies": {
"minimatch": "^10.2.2",
"npm-run-all": "^4.1.5",
"nx": "22.5.2",
"oxfmt": "^0.33.0",
"ts-node": "^10.9.2",
"patch-package": "^8.0.1"
},
"volta": {
"node": "22.22.0",
"yarn": "1.22.22"
}
}