generated from ExpediaGroup/new-project
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.85 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "cypress-codegen",
"packageManager": "bun@1.1.21",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cypress-codegen": "dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/ExpediaGroup/cypress-codegen.git"
},
"bugs": {
"url": "https://github.com/ExpediaGroup/cypress-codegen/issues"
},
"license": "Apache-2.0",
"dependencies": {
"@babel/core": "7.26.0",
"@babel/parser": "7.26.2",
"@babel/types": "7.26.0",
"@babel/generator": "7.26.2",
"@types/babel__generator": "7.6.8",
"chalk": "4.1.2",
"commander": "12.1.0",
"glob": "11.0.0",
"prettier": "3.3.3"
},
"peerDependencies": {
"cypress": ">=13"
},
"devDependencies": {
"@swc/jest": "0.2.37",
"@total-typescript/ts-reset": "0.6.1",
"@types/glob": "8.1.0",
"@types/react": "18.3.12",
"@types/jest": "29.5.14",
"@types/node": "22.9.3",
"cypress": "13.16.0",
"husky": "9.1.7",
"jest": "29.7.0",
"eslint": "9.15.0",
"eslint-plugin-cypress": "4.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"tsup": "8.3.5",
"typescript": "5.7.2",
"typescript-eslint": "8.15.0",
"vite": "5.4.11"
},
"scripts": {
"build": "tsup src/index.ts src/cli.ts --clean --dts --format cjs",
"cypress:open": "cypress open",
"cypress:component": "cypress run --component",
"cypress:e2e": "cypress run",
"format": "prettier --write .",
"format-check": "prettier .",
"lint": "eslint .",
"prepack": "bun run build",
"prepare": "husky",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"jest": {
"transform": {
"^.+\\.(j|t)sx?$": "@swc/jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"clearMocks": true
}
}