|
4 | 4 | "description": "Cypress.io end to end testing tool",
|
5 | 5 | "private": true,
|
6 | 6 | "scripts": {
|
| 7 | + "prebinary-build": "yarn gulp buildProd", |
7 | 8 | "binary-build": "node ./scripts/binary.js build",
|
8 | 9 | "binary-deploy": "node ./scripts/binary.js deploy",
|
9 | 10 | "binary-deploy-linux": "./scripts/build-linux-binary.sh",
|
|
13 | 14 | "binary-upload": "node ./scripts/binary.js upload",
|
14 | 15 | "binary-zip": "node ./scripts/binary.js zip",
|
15 | 16 | "build": "lerna run build --stream --no-bail --ignore create-cypress-tests && lerna run build --stream --scope create-cypress-tests",
|
| 17 | + "prebuild-prod": "yarn gulp buildProd", |
16 | 18 | "build-prod": "lerna run build-prod --stream --ignore create-cypress-tests && lerna run build-prod --stream --scope create-cypress-tests",
|
17 | 19 | "bump": "node ./scripts/binary.js bump",
|
18 | 20 | "check-node-version": "node scripts/check-node-version.js",
|
|
29 | 31 | "precypress:run:debug": "yarn ensure-deps",
|
30 | 32 | "cypress:run:debug": "node ./scripts/debug.js cypress:run",
|
31 | 33 | "cypress:verify": "cypress verify --dev",
|
32 |
| - "dev": "node ./scripts/start.js", |
33 |
| - "dev:watch": "node ./scripts/watch.js", |
| 34 | + "dev": "yarn gulp dev", |
| 35 | + "gulp:debug": "node --inspect-brk ./node_modules/.bin/gulp", |
34 | 36 | "dev-debug": "node ./scripts/debug.js dev",
|
35 | 37 | "docker": "./scripts/run-docker-local.sh",
|
36 | 38 | "effective:circle:config": "circleci config process circle.yml | sed /^#/d",
|
37 | 39 | "ensure-deps": "./scripts/ensure-dependencies.sh",
|
38 | 40 | "get-next-version": "node scripts/get-next-version.js",
|
39 |
| - "postinstall": "yarn-deduplicate --strategy=highest && patch-package && ./scripts/run-if-not-ci.sh yarn build", |
| 41 | + "postinstall": "yarn-deduplicate --strategy=highest && patch-package && yarn gulp postinstall && ./scripts/run-if-not-ci.sh yarn build", |
40 | 42 | "jscodeshift": "jscodeshift -t ./node_modules/js-codemod/transforms/arrow-function-arguments.js",
|
41 | 43 | "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json .",
|
42 | 44 | "lint-changed": "lint-changed",
|
|
81 | 83 | "@cypress/request": "2.88.6",
|
82 | 84 | "@cypress/request-promise": "4.2.6",
|
83 | 85 | "@fellow/eslint-plugin-coffee": "0.4.13",
|
| 86 | + "@graphql-codegen/add": "^2.0.2", |
| 87 | + "@graphql-codegen/cli": "^1.21.6", |
| 88 | + "@graphql-codegen/plugin-helpers": "^2.1.1", |
| 89 | + "@graphql-codegen/typed-document-node": "^1.18.9", |
| 90 | + "@graphql-codegen/typescript": "^1.22.4", |
| 91 | + "@graphql-codegen/typescript-operations": "^1.18.3", |
84 | 92 | "@percy/cli": "1.0.0-beta.48",
|
85 | 93 | "@percy/cypress": "^3.1.0",
|
86 | 94 | "@semantic-release/changelog": "5.0.1",
|
|
89 | 97 | "@types/chai-enzyme": "0.6.7",
|
90 | 98 | "@types/classnames": "2.2.9",
|
91 | 99 | "@types/debug": "4.1.5",
|
| 100 | + "@types/detect-port": "^1.3.1", |
92 | 101 | "@types/enzyme-adapter-react-16": "1.0.5",
|
93 | 102 | "@types/execa": "0.9.0",
|
94 | 103 | "@types/fs-extra": "^8.0.1",
|
| 104 | + "@types/getenv": "^1.0.0", |
95 | 105 | "@types/glob": "7.1.1",
|
| 106 | + "@types/gulp": "^4.0.9", |
96 | 107 | "@types/lodash": "4.14.168",
|
97 | 108 | "@types/markdown-it": "0.0.9",
|
98 | 109 | "@types/mini-css-extract-plugin": "1.4.2",
|
|
104 | 115 | "@types/react-dom": "16.9.8",
|
105 | 116 | "@types/request-promise": "4.1.45",
|
106 | 117 | "@types/sinon-chai": "3.2.3",
|
| 118 | + "@types/through2": "^2.0.36", |
107 | 119 | "@typescript-eslint/eslint-plugin": "4.18.0",
|
108 | 120 | "@typescript-eslint/parser": "4.18.0",
|
109 | 121 | "ansi-styles": "3.2.1",
|
110 | 122 | "arg": "4.1.2",
|
111 | 123 | "ascii-table": "0.0.9",
|
| 124 | + "autobarrel": "^1.1.0", |
112 | 125 | "aws-sdk": "2.447.0",
|
113 | 126 | "babel-eslint": "10.1.0",
|
114 | 127 | "bluebird": "3.5.3",
|
|
123 | 136 | "conventional-recommended-bump": "6.1.0",
|
124 | 137 | "debug": "4.3.2",
|
125 | 138 | "del": "3.0.0",
|
| 139 | + "detect-port": "^1.3.0", |
126 | 140 | "electron-builder": "22.9.1",
|
127 | 141 | "electron-notarize": "1.0.0",
|
128 | 142 | "enzyme-adapter-react-16": "1.12.1",
|
|
137 | 151 | "filesize": "4.1.2",
|
138 | 152 | "find-package-json": "1.2.0",
|
139 | 153 | "fs-extra": "8.1.0",
|
| 154 | + "getenv": "^1.0.0", |
140 | 155 | "gift": "0.10.2",
|
141 | 156 | "glob": "7.1.6",
|
142 | 157 | "globby": "10.0.1",
|
|
170 | 185 | "mocha-multi-reporters": "1.1.7",
|
171 | 186 | "mock-fs": "4.9.0",
|
172 | 187 | "odiff-bin": "2.1.0",
|
| 188 | + "p-defer": "^3.0.0", |
173 | 189 | "parse-github-repo-url": "1.4.1",
|
174 | 190 | "patch-package": "6.2.2",
|
175 | 191 | "plist": "3.0.1",
|
|
193 | 209 | "term-to-html": "1.2.0",
|
194 | 210 | "terminal-banner": "1.1.0",
|
195 | 211 | "through": "2.3.8",
|
| 212 | + "through2": "^4.0.2", |
196 | 213 | "ts-node": "8.3.0",
|
197 | 214 | "typescript": "^4.2.3",
|
198 | 215 | "yarn-deduplicate": "3.1.0"
|
|
0 commit comments