-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.57 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
{
"name": "hosted-cypress",
"packageManager": "yarn@4.1.0+sha256.81a00df816059803e6b5148acf03ce313cad36b7f6e5af6efa040a15981a6ffb",
"scripts": {
"cy-open": "cypress open --config numTestsKeptInMemory=0",
"cy-run": "cypress run",
"cy-chrome": "cypress run --browser chrome",
"cy-open-dev": "cypress open --config baseUrl=https://hosteddoltdb.hosteddev.ld-corp.com",
"cy-run-dev": "cypress run --config baseUrl=https://hosteddoltdb.hosteddev.ld-corp.com",
"cy-open-local": "CYPRESS_LOCAL=true cypress open --config baseUrl=http://localhost:3001,numTestsKeptInMemory=0",
"cy-run-local": "CYPRESS_LOCAL=true cypress run --config baseUrl=http://localhost:3001",
"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}'"
},
"dependencies": {
"cypress": "^13.15.1",
"typescript": "^5.6.3"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.24.7",
"@cypress/github-action": "^6.7.6",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^8.12.2",
"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.3.3"
}
}