-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.09 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.09 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"cypress": "cypress open --env \"pluginVisualRegressionUpdateImages=true,pluginVisualRegressionImagesPath={spec_path}/__image_snapshots_local__\"",
"cypress:ci": "cypress run --env \"pluginVisualRegressionUpdateImages=true\"",
"test:e2e": "start-server-and-test dev http://localhost:3000 \"pnpm cypress --e2e\"",
"test:e2e:ci": "start-server-and-test dev http://localhost:3000 \"pnpm cypress:ci --e2e\"",
"test:ct": "start-server-and-test dev http://localhost:3000 \"pnpm cypress --component\"",
"test:ct:ci": "start-server-and-test dev http://localhost:3000 \"pnpm cypress:ci --component\""
},
"dependencies": {
"next": "latest",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@frsource/cypress-plugin-visual-regression-diff": "workspace:*",
"@types/node": "18.0.6",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"cypress": "13.14.2",
"start-server-and-test": "1.15.2",
"typescript": "4.7.4"
}
}