-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "@sentry-internal/bundler-plugin-e2e-tests",
"version": "5.1.1",
"license": "MIT",
"private": true,
"scripts": {
"test": "run-s test:setup test:e2e",
"test:setup": "ts-node scripts/run-scenario-setups.ts",
"test:e2e": "vitest run",
"check:types": "tsc --project ./tsconfig.json --noEmit",
"clean": "run-s clean:build",
"clean:all": "run-p clean clean:deps",
"clean:build": "premove ./scenarios/*/out",
"clean:deps": "premove node_modules",
"lint": "eslint ."
},
"dependencies": {
"@sentry/esbuild-plugin": "5.1.1",
"@sentry/rollup-plugin": "5.1.1",
"@sentry/vite-plugin": "5.1.1",
"@sentry/webpack-plugin": "5.1.1",
"axios": "1.13.5"
},
"devDependencies": {
"@sentry-internal/eslint-config": "5.1.1",
"@sentry-internal/sentry-bundler-plugin-tsconfig": "5.1.1",
"@types/axios": "^0.14.0",
"@types/glob": "8.0.0",
"esbuild": "0.14.49",
"eslint": "^8.18.0",
"glob": "^13.0.6",
"vitest": "^4.0.0",
"premove": "^4.0.0",
"rollup": "3.2.0",
"ts-node": "^10.9.1",
"vite": "3.0.0",
"webpack": "5.74.0"
},
"volta": {
"extends": "../../package.json"
}
}