Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

package.json 1.9 KiB

feat: Optionally remove seconds from datetime (#8531) * fix: Add updated datepicker; fixed seconds formatting bug. Seconds between 0 and 9 were not zero-padded. * feat: Add framework for time format * feat: datetime server-side formatters. * tests: Added server-side datetime formatter tests * feat: Update client-side datetime formatters * tests: Add Cypress client-side formatting tests. * fix: JSON errors * fix: Update to not hard-code admin password * fix: Change to using bulk_update rather than the REST API * tests: Use Custom doctype for testing, not Standard * fix: Codacy style fixes * fix: Commonify update_datetime_picker in date.js, datetime.js, time.js Fix order of time_format in System Settings Restore get_user_fmt in utils/datetime.js * feat: Drastically reduce scale of Cypress testing (to make tests faster) Full testing is possible by setting 'fast_mode' to false in the spec file. * fix: Fix issues with datepicker/timepicker expansion * fix: typo * style: Various style fixes as requested by DeppSource: Python * fix: Timepicker not hiding on 'now' button. Force hiding on click. * style: Codacy style fixes. * fix: Use datepicker from node_modules * test: Refactor Datetime UI tests - cy.get_field - cy.set_value - cy.insert_doc with ignore_duplicate - Nominal datetime tests to cover most formats - Formatting with prettier * test: Datetime UI tests; wait for cur_frm.doc.datetime to update * tests: Add whitespace to typed input - Clear input only for Time field * test: Wait timeout 200 * test: Fix form test Co-authored-by: Faris Ansari <netchampfaris@users.noreply.github.com>
vor 5 Jahren
vor 7 Jahren
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "frappe",
  3. "scripts": {
  4. "build": "node rollup/build.js",
  5. "production": "FRAPPE_ENV=production node rollup/build.js",
  6. "watch": "node rollup/watch.js",
  7. "cypress:run": "cypress run --record --key 4a48f41c-11b3-425b-aa88-c58048fa69eb",
  8. "cypress:open": "cypress open",
  9. "snyk-protect": "snyk protect",
  10. "prepare": "yarn run snyk-protect"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/frappe/frappe.git"
  15. },
  16. "author": "Frappe Technologies Pvt. Ltd.",
  17. "license": "MIT",
  18. "bugs": {
  19. "url": "https://github.com/frappe/frappe/issues"
  20. },
  21. "homepage": "https://frappe.io",
  22. "dependencies": {
  23. "ace-builds": "^1.4.8",
  24. "air-datepicker": "http://github.com/frappe/air-datepicker",
  25. "awesomplete": "^1.1.5",
  26. "bootstrap": "^4.4.1",
  27. "cookie": "^0.4.0",
  28. "express": "^4.17.1",
  29. "fast-deep-equal": "^2.0.1",
  30. "frappe-charts": "^1.3.0",
  31. "frappe-datatable": "^1.15.1",
  32. "frappe-gantt": "^0.1.0",
  33. "fuse.js": "^3.4.6",
  34. "highlight.js": "^9.18.1",
  35. "js-sha256": "^0.9.0",
  36. "jsbarcode": "^3.9.0",
  37. "moment": "^2.20.1",
  38. "moment-timezone": "^0.5.28",
  39. "quagga": "^0.12.1",
  40. "quill": "2.0.0-dev.2",
  41. "qz-tray": "^2.0.8",
  42. "redis": "^2.8.0",
  43. "showdown": "^1.9.1",
  44. "socket.io": "^2.3.0",
  45. "superagent": "^3.8.2",
  46. "touch": "^3.1.0",
  47. "vue": "^2.6.11",
  48. "vue-router": "^2.0.0",
  49. "snyk": "^1.294.1"
  50. },
  51. "devDependencies": {
  52. "babel-runtime": "^6.26.0",
  53. "chalk": "^2.3.2",
  54. "cypress": "^3.1.1",
  55. "cypress-file-upload": "^3.1.0",
  56. "less": "^3.11.1",
  57. "node-sass": "^4.13.1",
  58. "rollup": "^1.2.2",
  59. "rollup-plugin-buble": "^0.19.2",
  60. "rollup-plugin-commonjs": "^8.3.0",
  61. "rollup-plugin-multi-entry": "^2.0.2",
  62. "rollup-plugin-node-resolve": "^4.0.1",
  63. "rollup-plugin-postcss": "^2.0.3",
  64. "rollup-plugin-terser": "^4.0.4",
  65. "rollup-plugin-vue": "4.2.0",
  66. "vue-template-compiler": "^2.6.11"
  67. },
  68. "snyk": true
  69. }