-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 727 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 727 Bytes
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
{
"name": "vinext-app-e2e-test",
"private": true,
"type": "module",
"scripts": {
"dev": "vinext dev",
"build": "vinext build",
"start": "vinext start --port 3030",
"test": "playwright test",
"test:build": "pnpm install && pnpm build",
"test:assert": "pnpm test"
},
"dependencies": {
"@sentry/vinext": "latest || *",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@playwright/test": "~1.56.0",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@vitejs/plugin-rsc": "^0.5.20",
"typescript": "~5.5.0",
"vinext": "^0.0.19",
"vite": "^7.3.1"
},
"volta": {
"extends": "../../package.json",
"node": "22.18.0"
}
}