123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- {
- "private": true,
- "name": "pipeline-editor",
- "description": "",
- "version": "1.9.0",
- "workspaces": {
- "packages": [
- "packages/*"
- ]
- },
- "main": "./packages/extension/dist/index.js",
- "devDependencies": {
- "@babel/core": "^7.13.8",
- "@storybook/addon-actions": "^6.4.9",
- "@storybook/addon-essentials": "^6.4.9",
- "@storybook/addon-links": "^6.4.9",
- "@storybook/react": "^6.4.9",
- "@testing-library/cypress": "^7.0.4",
- "@types/jest": "^26.0.20",
- "@typescript-eslint/eslint-plugin": "^4.5.0",
- "@typescript-eslint/parser": "^4.5.0",
- "babel-eslint": "^10.0.0",
- "babel-loader": "^8.2.2",
- "core-js": "^3.9.1",
- "cypress": "^6.6.0",
- "eslint": "^7.11.0",
- "eslint-config-react-app": "^6.0.0",
- "eslint-plugin-cypress": "^2.11.2",
- "eslint-plugin-flowtype": "^5.2.0",
- "eslint-plugin-header": "^3.1.0",
- "eslint-plugin-import": "^2.22.1",
- "eslint-plugin-jest": "^24.1.0",
- "eslint-plugin-jest-dom": "^3.6.5",
- "eslint-plugin-jsx-a11y": "^6.3.1",
- "eslint-plugin-react": "^7.21.5",
- "eslint-plugin-react-hooks": "^4.2.0",
- "eslint-plugin-testing-library": "^3.10.1",
- "husky": "^3.1.0",
- "jest": "^26.6.3",
- "lerna": "^3.22.1",
- "lint-staged": "^9.4.3",
- "microbundle": "^0.13.0",
- "prettier": "^2.2.1",
- "start-server-and-test": "^1.12.0",
- "ts-jest": "^26.5.1",
- "typescript": "4.1.3"
- },
- "husky": {
- "hooks": {
- "pre-commit": "lint-staged"
- }
- },
- "lint-staged": {
- "**/*.{tsx,ts,js,md,css,html,json}": [
- "prettier --write",
- "git add"
- ]
- },
- "scripts": {
- "clean": "lerna run clean; rm -rf node_modules",
- "build": "lerna run build",
- "link-all": "lerna run link",
- "watch": "FORCE_COLOR=true lerna run watch --parallel --stream",
- "sb:start": "start-storybook -p 6006",
- "sb:ci": "start-storybook -p 6006 --ci",
- "test": "jest",
- "test:cover": "jest --coverage",
- "test:cypress:dev": "start-server-and-test sb:ci http://localhost:6006 cy:open",
- "test:cypress": "start-server-and-test sb:ci http://localhost:6006 cy:run",
- "cy:run": "cypress run",
- "cy:open": "cypress open",
- "lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js,.jsx --max-warnings=0",
- "lint:fix": "eslint . --fix --ignore-path .gitignore --ext .ts,.tsx,.js,.jsx",
- "format": "prettier --ignore-path .gitignore --write \"**/*.{tsx,ts,js,css,html,json}\"",
- "format:check": "prettier --ignore-path .gitignore --check \"**/*.{tsx,ts,js,css,html,json}\"",
- "preinstall": "npx force-resolutions -y"
- },
- "dependencies": {},
- "resolutions": {
- "immer": "9.0.7",
- "prismjs": "1.25.0",
- "trim": "0.0.3"
- }
- }
|