mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-04 14:00:22 -05:00
0fce48787c
* upgrade percy * update yarn.lock * remove percy/healthcheck * reduce to one percy version * fix percy for component testing - dont let component runner overwrite spec globals * fix type-check
110 lines
3.5 KiB
JSON
110 lines
3.5 KiB
JSON
{
|
|
"name": "@cypress/design-system",
|
|
"version": "0.0.0-development",
|
|
"description": "Styles, standards, and components used throughout Cypress",
|
|
"main": "dist/cypress-design-system.cjs.js",
|
|
"scripts": {
|
|
"build": "rimraf dist && yarn rollup -c rollup.config.js",
|
|
"build-prod": "yarn build",
|
|
"build-storybook": "build-storybook",
|
|
"build-style-types": "tsm \"src/css/derived/*.scss\" --nameFormat none --exportType default",
|
|
"cy:open": "node ../../scripts/cypress.js open-ct --project ${PWD}",
|
|
"cy:open:debug": "node --inspect-brk ../../scripts/start.js --component-testing --project ${PWD}",
|
|
"cy:run": "node ../../scripts/cypress.js run-ct --project ${PWD}",
|
|
"cy:run:debug": "node --inspect-brk ../../scripts/start.js --component-testing --run-project ${PWD}",
|
|
"storybook": "start-storybook -p 6006",
|
|
"pretest": "yarn transpile",
|
|
"test": "yarn cy:run",
|
|
"transpile": "tsc",
|
|
"watch": "yarn build --watch"
|
|
},
|
|
"dependencies": {
|
|
"@fortawesome/fontawesome-free": "5.15.2",
|
|
"@fortawesome/fontawesome-svg-core": "1.2.34",
|
|
"@fortawesome/free-brands-svg-icons": "5.15.2",
|
|
"@fortawesome/free-solid-svg-icons": "5.15.2",
|
|
"@fortawesome/react-fontawesome": "0.1.14",
|
|
"classnames": "2.2.6",
|
|
"debug": "4.3.2",
|
|
"react-aria": "^3.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.4.5",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
|
|
"@babel/preset-env": "7.4.5",
|
|
"@babel/preset-react": "7.0.0",
|
|
"@babel/preset-typescript": "7.10.4",
|
|
"@cypress/react": "0.0.0-development",
|
|
"@cypress/vite-dev-server": "0.0.0-development",
|
|
"@react-types/button": "^3.3.1",
|
|
"@react-types/shared": "^3.5.0",
|
|
"@rollup/plugin-commonjs": "^17.1.0",
|
|
"@rollup/plugin-image": "2.0.6",
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
"@rollup/plugin-node-resolve": "^11.1.1",
|
|
"@rollup/plugin-typescript": "^8.2.1",
|
|
"@storybook/addon-actions": "^6.1.21",
|
|
"@storybook/addon-essentials": "^6.1.21",
|
|
"@storybook/addon-links": "^6.1.21",
|
|
"@storybook/preset-typescript": "^3.0.0",
|
|
"@storybook/react": "^6.1.21",
|
|
"@types/node": "14.14.31",
|
|
"@types/semver": "7.3.4",
|
|
"babel-loader": "8.0.6",
|
|
"css-loader": "^5.1.3",
|
|
"cypress": "0.0.0-development",
|
|
"cypress-real-events": "1.1.0",
|
|
"eslint-plugin-react": "^7.22.0",
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
"postcss": "^8.2.8",
|
|
"react": "16.8.6",
|
|
"react-dom": "16.8.6",
|
|
"rollup": "^2.38.5",
|
|
"rollup-plugin-copy": "^3.4.0",
|
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
"rollup-plugin-postcss": "^4.0.0",
|
|
"sass": "1.32.8",
|
|
"sass-loader": "10.1.1",
|
|
"style-loader": "^2.0.0",
|
|
"svg-url-loader": "3.0.3",
|
|
"tsconfig-paths-webpack-plugin": "^3.5.1",
|
|
"typed-scss-modules": "^4.1.1",
|
|
"typescript": "^4.2.3",
|
|
"vite": "2.1.3",
|
|
"webpack": "4.44.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^=16.x || ^=17.x",
|
|
"react-dom": "^=16.x || ^=17.x"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"types": "dist/index.d.ts",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cypress-io/cypress.git"
|
|
},
|
|
"author": "Cypress.io",
|
|
"keywords": [
|
|
"design-system",
|
|
"cypress",
|
|
"cypress-io"
|
|
],
|
|
"unpkg": "dist/cypress-design-system.browser.js",
|
|
"module": "dist/cypress-design-system.esm-bundler.js",
|
|
"style": "dist/index.scss",
|
|
"publishConfig": {
|
|
"access": "restricted"
|
|
},
|
|
"standard": {
|
|
"globals": [
|
|
"Cypress",
|
|
"cy",
|
|
"expect"
|
|
]
|
|
}
|
|
}
|