-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.13 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.13 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
{
"name": "docs-cypress",
"version": "1.0.0",
"description": "Cypress migration tests for DoltHub docs sites",
"private": true,
"workspaces": [
"site/*"
],
"scripts": {
"build:dolt": "npm run build --workspace site/dolt",
"build:doltlab": "npm run build --workspace site/doltlab",
"build:doltgres": "npm run build --workspace site/doltgres",
"preview:dolt": "npm run preview --workspace site/dolt",
"preview:doltlab": "npm run preview --workspace site/doltlab",
"preview:doltgres": "npm run preview --workspace site/doltgres",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:open:doltlab": "cypress open --config-file cypress.doltlab.config.ts",
"cy:run:doltlab": "cypress run --config-file cypress.doltlab.config.ts",
"cy:open:doltgres": "cypress open --config-file cypress.doltgres.config.ts",
"cy:run:doltgres": "cypress run --config-file cypress.doltgres.config.ts",
"cy:run:live": "cypress run --config baseUrl=https://docs.dolthub.com --env basePath=",
"compile": "tsc --noEmit"
},
"devDependencies": {
"cypress": "^15.15.0",
"typescript": "^5.0.0"
}
}