-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 3.05 KB
/
package.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "dolthub-cypress",
"version": "1.0.0",
"main": "index.js",
"author": "",
"license": "ISC",
"packageManager": "[email protected]+sha256.5a9d054e67fbbae8774cd3667736fd74407ffbbb336898523ca1fe87b3fc4ee3",
"scripts": {
"cy-open": "cypress open",
"cy-run": "cypress run",
"cy-chrome": "cypress run --browser chrome",
"cy-open-dev": "cypress open --config baseUrl=https://dolthub.awsdev.ld-corp.com",
"cy-open-dev-p1": "cypress open --config baseUrl=https://dolthub-preview-1.awsdev.ld-corp.com",
"cy-open-dev-p2": "cypress open --config baseUrl=https://dolthub-preview-2.awsdev.ld-corp.com",
"cy-open-dev-p3": "cypress open --config baseUrl=https://dolthub-preview-3.awsdev.ld-corp.com",
"cy-run-dev": "cypress run --config baseUrl=https://dolthub.awsdev.ld-corp.com",
"cy-run-dev-p1": "cypress run --config baseUrl=https://dolthub-preview-1.awsdev.ld-corp.com",
"cy-run-dev-p2": "cypress run --config baseUrl=https://dolthub-preview-2.awsdev.ld-corp.com",
"cy-run-dev-p3": "cypress run --config baseUrl=https://dolthub-preview-3.awsdev.ld-corp.com",
"cy-open-local-dolthub": "CYPRESS_LOCAL_DOLTHUB=true cypress open --config baseUrl=http://localhost:3000,numTestsKeptInMemory=0,chromeWebSecurity=false",
"cy-open-local-blog": "CYPRESS_LOCAL_BLOG=true cypress open --config baseUrl=http://localhost:8000",
"cy-run-local-dolthub": "CYPRESS_LOCAL_DOLTHUB=true cypress run --config baseUrl=http://localhost:3000,numTestsKeptInMemory=0,chromeWebSecurity=false",
"cy-run-local-blog": "CYPRESS_LOCAL_BLOG=true cypress run --config baseUrl=http://localhost:8000",
"cy-chrome-blog": "CYPRESS_LOCAL_BLOG=true cypress run --browser chrome --config baseUrl=http://localhost:8000",
"cy-open-doltlab": "cypress open --config-file cypress.doltlab.config.ts",
"cy-run-doltlab": "cypress run --config-file cypress.doltlab.config.ts",
"cy-chrome-doltlab": "cypress run --browser chrome --config-file cypress.doltlab.config.ts",
"ci": "npm-run-all prettier compile lint",
"compile": "tsc -b",
"lint": "eslint --cache --ext .ts,.js .",
"prettier": "prettier --check 'cypress/**/*.{ts,js}'",
"prettier:fix": "prettier --write 'cypress/**/*.{ts,js}'"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@cypress/github-action": "^6.7.8",
"@types/node": "^22.10.4",
"@typescript-eslint/eslint-plugin": "^7.14",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-import": "^2.31.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2"
},
"dependencies": {
"@aws-sdk/client-sns": "^3.721.0",
"cypress": "^13.17.0",
"cypress-file-upload": "^5.0.8",
"gatsby-cypress": "^3.14.0",
"typescript": "^5.7.2"
},
"resolutions": {
"minimist": "^1.2.6",
"xml2js": "^0.5.0"
}
}