package.json 712 B

1234567891011121314151617181920212223242526
  1. {
  2. "private": true,
  3. "workspaces": [
  4. "packages/*"
  5. ],
  6. "devDependencies": {
  7. "@floating-ui/dom": "^1.5.3",
  8. "axios": "^0.21.1",
  9. "chalk": "^4.1.1",
  10. "cypress": "^7.0.0",
  11. "cypress-plugin-tab": "^1.0.5",
  12. "dot-json": "^1.2.2",
  13. "esbuild": "~0.16.17",
  14. "jest": "^26.6.3",
  15. "sortablejs": "^1.15.2"
  16. },
  17. "scripts": {
  18. "build": "node ./scripts/build.js",
  19. "watch": "node ./scripts/build.js --watch",
  20. "test": "cypress run --quiet",
  21. "cypress": "cypress open",
  22. "jest": "jest test",
  23. "update-docs": "node ./scripts/update-docs.js",
  24. "release": "node ./scripts/release.js"
  25. }
  26. }