package.json 665 B

12345678910111213141516171819202122232425
  1. {
  2. "private": true,
  3. "workspaces": [
  4. "packages/*"
  5. ],
  6. "devDependencies": {
  7. "axios": "^0.21.1",
  8. "brotli-size": "^4.0.0",
  9. "chalk": "^4.1.1",
  10. "cypress": "^5.5.0",
  11. "cypress-plugin-tab": "^1.0.5",
  12. "dot-json": "^1.2.2",
  13. "esbuild": "^0.8.39",
  14. "jest": "^26.6.3"
  15. },
  16. "scripts": {
  17. "build": "node ./scripts/build.js",
  18. "watch": "node ./scripts/build.js --watch",
  19. "test": "cypress run",
  20. "cypress": "cypress open",
  21. "jest": "jest test",
  22. "update-docs": "node ./scripts/update-docs.js",
  23. "release": "node ./scripts/release.js"
  24. }
  25. }