-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 695 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 695 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
{
"name": "@spotlightjs/e2e-tests-nextjs",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"preview": "next dev",
"pretest:e2e": "playwright install --with-deps",
"test:e2e": "playwright test"
},
"dependencies": {
"@sentry/nextjs": "^8.37.1",
"next": ">=15.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@spotlightjs/spotlight": "workspace:*",
"@types/node": "20.10.4",
"@types/react": "18.2.45",
"typescript": "5.3.3",
"webpack-hook-plugin": "^1.0.7"
},
"volta": {
"extends": "../../package.json"
}
}