mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-24 07:59:12 -05:00
6adba462ea
* chore: do not rely on transitive dep. from npm/react * chore: bump to vite 3.0.2 * revert * target es6 * remove unused code * update styles * remove ts-ignore * bump to vite 3.0.3
51 lines
1.6 KiB
JSON
51 lines
1.6 KiB
JSON
{
|
|
"name": "@cypress/vite-dev-server",
|
|
"version": "0.0.0-development",
|
|
"description": "Launches Vite Dev Server for Component Testing",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "tsc || echo 'built, with type errors'",
|
|
"build-prod": "tsc || echo 'built, with type errors'",
|
|
"check-ts": "tsc --noEmit",
|
|
"cypress:run": "yarn cypress:run-cypress-in-cypress node ../../scripts/cypress run --project . --browser chrome",
|
|
"cypress:run-cypress-in-cypress": "cross-env HTTP_PROXY_TARGET_FOR_ORIGIN_REQUESTS=http://localhost:4455 CYPRESS_REMOTE_DEBUGGING_PORT=6666 TZ=America/New_York",
|
|
"cypress:open": "yarn cypress:run-cypress-in-cypress gulp open --project .",
|
|
"watch": "tsc -w",
|
|
"test": "yarn test-unit",
|
|
"test-unit": "mocha -r ts-node/register/transpile-only --config ./test/.mocharc.js"
|
|
},
|
|
"dependencies": {
|
|
"debug": "4.3.3",
|
|
"find-up": "6.3.0",
|
|
"local-pkg": "0.4.1",
|
|
"node-html-parser": "5.3.3",
|
|
"pathe": "0.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.3.6",
|
|
"dedent": "^0.7.0",
|
|
"mocha": "^9.2.2",
|
|
"sinon": "^13.0.1",
|
|
"ts-node": "^10.2.1",
|
|
"vite": "3.0.3",
|
|
"vite-plugin-inspect": "0.4.3"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"client",
|
|
"index.html",
|
|
"index.d.ts"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cypress-io/cypress.git"
|
|
},
|
|
"homepage": "https://github.com/cypress-io/cypress/tree/master/npm/vite-dev-server#readme",
|
|
"bugs": "https://github.com/cypress-io/cypress/issues/new?template=1-bug-report.md",
|
|
"module": "dist/index.js",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|