package.json 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. {
  2. "name": "coriolis-web",
  3. "version": "2.0.0",
  4. "license": "AGPL-3.0",
  5. "packageManager": "yarn@3.6.3",
  6. "engines": {
  7. "node": ">=16.0.0"
  8. },
  9. "scripts": {
  10. "start": "node ./server",
  11. "build:dev": "webpack --config webpack.dev.js",
  12. "build:prod": "webpack --config webpack.prod.js",
  13. "client-dev": "webpack-dev-server --config webpack.dev.js",
  14. "server-dev": "nodemon -e ts,js -w server/**/ -w .env",
  15. "server-debug": "node --inspect server",
  16. "tsc": "npx tsc --skipLibCheck",
  17. "eslint": "npx eslint \"src/**\" \"server/**\"",
  18. "format": "prettier --check src/**/*.{js,jsx,ts,tsx,css,md,json} --config ./.prettierrc",
  19. "test": "jest",
  20. "e2e": "cypress run",
  21. "test-release": "node ./tests/testRelease",
  22. "storybook": "start-storybook"
  23. },
  24. "devDependencies": {
  25. "@eslint/eslintrc": "^3.3.1",
  26. "@eslint/js": "^9.24.0",
  27. "@storybook/react": "^6.4.13",
  28. "@testing-library/dom": "^8.11.1",
  29. "@testing-library/react": "^16.3.0",
  30. "@testing-library/user-event": "^13.5.0",
  31. "@types/connect": "^3.4.33",
  32. "@types/express": "^5.0.1",
  33. "@types/file-saver": "^2.0.1",
  34. "@types/jest": "^27.0.2",
  35. "@types/js-cookie": "^2.2.6",
  36. "@types/luxon": "^3.3.3",
  37. "@types/moment-timezone": "^0.5.13",
  38. "@types/react": "^18.0.0",
  39. "@types/react-collapse": "^5.0.0",
  40. "@types/react-dom": "^18.0.11",
  41. "@types/react-modal": "^3.10.5",
  42. "@types/react-notification-system": "^0.2.39",
  43. "@types/react-tooltip": "^4.2.4",
  44. "@types/styled-components": "^5.1.34",
  45. "@typescript-eslint/eslint-plugin": "^8.30.1",
  46. "@typescript-eslint/parser": "^8.30.1",
  47. "cross-spawn": "^7.0.6",
  48. "cypress": "14.3.2",
  49. "eslint": "^9.24.0",
  50. "eslint-config-prettier": "^10.1.2",
  51. "eslint-plugin-coriolis-web": "file:./src/utils/eslint-plugin-coriolis-web",
  52. "eslint-plugin-prettier": "^5.2.6",
  53. "eslint-plugin-react": "^7.31.7",
  54. "globals": "^16.0.0",
  55. "jest": "^29.7.0",
  56. "jest-canvas-mock": "^2.5.2",
  57. "jest-environment-jsdom": "^29.7.0",
  58. "nodemon": "^3.1.9",
  59. "prettier": "^3.5.3",
  60. "util": "^0.12.5"
  61. },
  62. "dependencies": {
  63. "@babel/core": "^7.26.10",
  64. "@babel/plugin-proposal-class-properties": "^7.18.6",
  65. "@babel/plugin-proposal-decorators": "^7.25.9",
  66. "@babel/plugin-proposal-object-rest-spread": "^7.20.7",
  67. "@babel/plugin-proposal-optional-chaining": "^7.21.0",
  68. "@babel/preset-env": "^7.26.9",
  69. "@babel/preset-react": "^7.26.3",
  70. "@babel/preset-typescript": "^7.27.0",
  71. "@babel/register": "^7.25.9",
  72. "@pmmmwh/react-refresh-webpack-plugin": "^0.5.16",
  73. "ansi-to-html": "^0.7.2",
  74. "autobind-decorator": "^2.4.0",
  75. "axios": "^0.30.0",
  76. "babel-loader": "^10.0.0",
  77. "babel-plugin-styled-components": "^2.1.4",
  78. "body-parser": "^2.2.1",
  79. "clean-webpack-plugin": "^4.0.0",
  80. "copy-webpack-plugin": "^13.0.0",
  81. "dotenv": "^14.3.2",
  82. "express": "^5.2.0",
  83. "file-loader": "^6.2.0",
  84. "file-saver": "^2.0.5",
  85. "fs": "^0.0.1-security",
  86. "html-webpack-plugin": "^5.6.3",
  87. "js-base64": "^3.7.7",
  88. "js-cookie": "^3.0.5",
  89. "jszip": "^3.10.1",
  90. "lodash": "^4.17.21",
  91. "luxon": "^3.6.1",
  92. "mobx": "^5.15.4",
  93. "mobx-react": "^6.2.2",
  94. "moment-timezone": "^0.5.48",
  95. "ms-rest-azure": "^3.0.2",
  96. "path": "^0.12.7",
  97. "react": "^18.2.0",
  98. "react-collapse": "^5.1.1",
  99. "react-datetime": "^3.3.1",
  100. "react-dom": "^18.2.0",
  101. "react-idle-timer": "^5.7.2",
  102. "react-modal": "^3.16.3",
  103. "react-motion": "^0.5.2",
  104. "react-notification-system": "^0.4.0",
  105. "react-refresh": "^0.16.0",
  106. "react-router": "^7.12.0",
  107. "react-tooltip": "^4.5.1",
  108. "react-transition-group": "^4.x",
  109. "request": "^2.88.2",
  110. "require-without-cache": "^0.0.6",
  111. "rimraf": "^6.0.1",
  112. "styled-components": "^5.3.11",
  113. "tai-password-strength": "^1.1.3",
  114. "ts-node": "^10.9.2",
  115. "typescript": "^5.8.3",
  116. "url-loader": "^4.1.1",
  117. "webpack": "^5.99.7",
  118. "webpack-cli": "^6.0.1",
  119. "webpack-dev-server": "^5.2.1",
  120. "webpack-merge": "^6.0.1"
  121. },
  122. "resolutions": {
  123. "ansi-regex": "^5.0.1",
  124. "async": "^2.6.4",
  125. "base64url": "^3.0.0",
  126. "eventsource": "^2.0.2",
  127. "glob-parent": "^5.1.2",
  128. "hosted-git-info": "^2.8.9",
  129. "is-svg": "^4.2.2",
  130. "json-schema": "^0.4.0",
  131. "loader-utils": "^2.0.3",
  132. "minimist": "^1.2.6",
  133. "node-fetch": "^2.6.1",
  134. "node-forge": "^1.0.0",
  135. "node-notifier": "^8.0.1",
  136. "normalize-url": "^4.5.1",
  137. "nth-check": "^2.0.1",
  138. "prismjs": "^1.27.0",
  139. "postcss": "^8.2.13",
  140. "lodash": "^4.17.21",
  141. "tar": "^4.4.18",
  142. "trim": "^0.0.3",
  143. "ua-parser-js": "^0.7.24",
  144. "underscore": "^1.12.1",
  145. "y18n": "^3.2.2",
  146. "yargs-parser": "^20.2.9"
  147. }
  148. }