package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "private": true,
  3. "name": "pipeline-editor",
  4. "description": "",
  5. "version": "1.9.0",
  6. "workspaces": {
  7. "packages": [
  8. "packages/*"
  9. ]
  10. },
  11. "main": "./packages/extension/dist/index.js",
  12. "devDependencies": {
  13. "@babel/core": "^7.13.8",
  14. "@storybook/addon-actions": "^6.4.9",
  15. "@storybook/addon-essentials": "^6.4.9",
  16. "@storybook/addon-links": "^6.4.9",
  17. "@storybook/react": "^6.4.9",
  18. "@testing-library/cypress": "^7.0.4",
  19. "@types/jest": "^26.0.20",
  20. "@typescript-eslint/eslint-plugin": "^4.5.0",
  21. "@typescript-eslint/parser": "^4.5.0",
  22. "babel-eslint": "^10.0.0",
  23. "babel-loader": "^8.2.2",
  24. "core-js": "^3.9.1",
  25. "cypress": "^6.6.0",
  26. "eslint": "^7.11.0",
  27. "eslint-config-react-app": "^6.0.0",
  28. "eslint-plugin-cypress": "^2.11.2",
  29. "eslint-plugin-flowtype": "^5.2.0",
  30. "eslint-plugin-header": "^3.1.0",
  31. "eslint-plugin-import": "^2.22.1",
  32. "eslint-plugin-jest": "^24.1.0",
  33. "eslint-plugin-jest-dom": "^3.6.5",
  34. "eslint-plugin-jsx-a11y": "^6.3.1",
  35. "eslint-plugin-react": "^7.21.5",
  36. "eslint-plugin-react-hooks": "^4.2.0",
  37. "eslint-plugin-testing-library": "^3.10.1",
  38. "husky": "^3.1.0",
  39. "jest": "^26.6.3",
  40. "lerna": "^3.22.1",
  41. "lint-staged": "^9.4.3",
  42. "microbundle": "^0.13.0",
  43. "prettier": "^2.2.1",
  44. "start-server-and-test": "^1.12.0",
  45. "ts-jest": "^26.5.1",
  46. "typescript": "4.1.3"
  47. },
  48. "husky": {
  49. "hooks": {
  50. "pre-commit": "lint-staged"
  51. }
  52. },
  53. "lint-staged": {
  54. "**/*.{tsx,ts,js,md,css,html,json}": [
  55. "prettier --write",
  56. "git add"
  57. ]
  58. },
  59. "scripts": {
  60. "clean": "lerna run clean; rm -rf node_modules",
  61. "build": "lerna run build",
  62. "link-all": "lerna run link",
  63. "watch": "FORCE_COLOR=true lerna run watch --parallel --stream",
  64. "sb:start": "start-storybook -p 6006",
  65. "sb:ci": "start-storybook -p 6006 --ci",
  66. "test": "jest",
  67. "test:cover": "jest --coverage",
  68. "test:cypress:dev": "start-server-and-test sb:ci http://localhost:6006 cy:open",
  69. "test:cypress": "start-server-and-test sb:ci http://localhost:6006 cy:run",
  70. "cy:run": "cypress run",
  71. "cy:open": "cypress open",
  72. "lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js,.jsx --max-warnings=0",
  73. "lint:fix": "eslint . --fix --ignore-path .gitignore --ext .ts,.tsx,.js,.jsx",
  74. "format": "prettier --ignore-path .gitignore --write \"**/*.{tsx,ts,js,css,html,json}\"",
  75. "format:check": "prettier --ignore-path .gitignore --check \"**/*.{tsx,ts,js,css,html,json}\"",
  76. "preinstall": "npx force-resolutions -y"
  77. },
  78. "dependencies": {},
  79. "resolutions": {
  80. "immer": "9.0.7",
  81. "prismjs": "1.25.0",
  82. "trim": "0.0.3"
  83. }
  84. }