Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

package.json 2.0 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>
5 år sedan
7 år sedan
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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:open": "cypress open",
  8. "snyk-protect": "snyk protect",
  9. "prepare": "yarn run snyk-protect"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/frappe/frappe.git"
  14. },
  15. "author": "Frappe Technologies Pvt. Ltd.",
  16. "license": "MIT",
  17. "bugs": {
  18. "url": "https://github.com/frappe/frappe/issues"
  19. },
  20. "homepage": "https://frappeframework.com",
  21. "dependencies": {
  22. "ace-builds": "^1.4.8",
  23. "air-datepicker": "http://github.com/frappe/air-datepicker",
  24. "autoprefixer": "^9.8.6",
  25. "awesomplete": "^1.1.5",
  26. "bootstrap": "^4.4.1",
  27. "cookie": "^0.4.0",
  28. "cssnano": "^4.1.10",
  29. "driver.js": "^0.9.8",
  30. "express": "^4.17.1",
  31. "fast-deep-equal": "^2.0.1",
  32. "frappe-charts": "^1.5.1",
  33. "frappe-datatable": "^1.15.1",
  34. "frappe-gantt": "^0.5.0",
  35. "fuse.js": "^3.4.6",
  36. "highlight.js": "^9.18.1",
  37. "js-sha256": "^0.9.0",
  38. "jsbarcode": "^3.9.0",
  39. "moment": "^2.20.1",
  40. "moment-timezone": "^0.5.28",
  41. "node-sass": "^4.13.1",
  42. "quagga": "^0.12.1",
  43. "quill": "2.0.0-dev.4",
  44. "quill-image-resize": "^3.0.9",
  45. "qz-tray": "^2.0.8",
  46. "redis": "^2.8.0",
  47. "showdown": "^1.9.1",
  48. "snyk": "^1.398.0",
  49. "socket.io": "^2.3.0",
  50. "superagent": "^3.8.2",
  51. "touch": "^3.1.0",
  52. "vue": "^2.6.11",
  53. "vue-router": "^2.0.0"
  54. },
  55. "devDependencies": {
  56. "babel-runtime": "^6.26.0",
  57. "chalk": "^2.3.2",
  58. "cypress": "3",
  59. "cypress-file-upload": "^3.1.0",
  60. "graphlib": "^2.1.8",
  61. "less": "^3.11.1",
  62. "rollup": "^1.2.2",
  63. "rollup-plugin-buble": "^0.19.2",
  64. "rollup-plugin-commonjs": "^8.3.0",
  65. "rollup-plugin-multi-entry": "^2.0.2",
  66. "rollup-plugin-node-resolve": "^4.0.1",
  67. "rollup-plugin-postcss": "^2.0.3",
  68. "rollup-plugin-terser": "^4.0.4",
  69. "rollup-plugin-vue": "4.2.0",
  70. "vue-template-compiler": "^2.6.11"
  71. },
  72. "snyk": true
  73. }