package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "name": "sin3d",
  3. "description": "Synthesis Image Noise Detection on Distributed Data",
  4. "version": "0.2.8",
  5. "private": true,
  6. "keywords": [
  7. "noise",
  8. "detection",
  9. "synthesis image",
  10. "distributed",
  11. "data",
  12. "web",
  13. "experiment"
  14. ],
  15. "directories": {
  16. "doc": "./DOCUMENTATION"
  17. },
  18. "homepage": "https://gogs.univ-littoral.fr/Prise3D/SIN3D",
  19. "author": "Antoine Sauvage <contact@asauvage.fr> (https://asauvage.fr/)",
  20. "contributors": [
  21. "Jérôme Buisine <contact@jeromebuisine.fr> (https://jeromebuisine.fr/)",
  22. "Samuel Delepoulle <delepoulle@lisic.univ-littoral.fr>"
  23. ],
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://gogs.univ-littoral.fr/Prise3D/SIN3D.git"
  27. },
  28. "bugs": {
  29. "url": "https://gogs.univ-littoral.fr/Prise3D/SIN3D/issues"
  30. },
  31. "license": "MIT",
  32. "scripts": {
  33. "server:start": "node -r esm index.js",
  34. "server:start:no-delete-extracts": "node -r esm index.js --no-delete",
  35. "server:lint": "eslint server/ --fix",
  36. "app:dev": "vue-cli-service serve",
  37. "app:build": "vue-cli-service build",
  38. "app:lint": "vue-cli-service lint",
  39. "doc": "apidoc -i server/routes -o doc",
  40. "test": "node test/utils/_test_setup_start.js && ava --verbose && node test/utils/_test_setup_stop.js"
  41. },
  42. "dependencies": {
  43. "@hapi/boom": "^7.4.2",
  44. "body-parser": "^1.19.0",
  45. "compression": "^1.7.4",
  46. "core-js": "^2.6.5",
  47. "cors": "^2.8.5",
  48. "cron": "^1.7.1",
  49. "esm": "^3.2.22",
  50. "express": "^4.16.4",
  51. "helmet": "^3.16.0",
  52. "mongoose": "^5.5.5",
  53. "morgan": "^1.9.1",
  54. "serve-static": "^1.13.2",
  55. "sharp": "^0.22.1",
  56. "ua-parser-js": "^0.7.19",
  57. "winston": "^3.2.1"
  58. },
  59. "devDependencies": {
  60. "@vue/cli-plugin-babel": "^3.7.0",
  61. "@vue/cli-plugin-eslint": "^3.7.0",
  62. "@vue/cli-service": "^3.7.0",
  63. "@vue/eslint-config-standard": "^4.0.0",
  64. "apidoc": "^0.17.7",
  65. "ava": "^1.4.1",
  66. "babel-eslint": "^10.0.1",
  67. "deepmerge": "^3.2.0",
  68. "eslint": "^5.16.0",
  69. "eslint-plugin-vue": "^5.2.2",
  70. "fs-extra": "^7.0.1",
  71. "material-design-icons-iconfont": "^4.0.5",
  72. "stylus": "^0.54.5",
  73. "stylus-loader": "^3.0.2",
  74. "supertest": "^4.0.2",
  75. "vue": "^2.6.10",
  76. "vue-cli-plugin-vuetify": "^0.5.0",
  77. "vue-router": "^3.0.6",
  78. "vue-template-compiler": "^2.6.10",
  79. "vuetify": "^1.5.14",
  80. "vuetify-loader": "^1.2.2",
  81. "vuex": "^3.1.0",
  82. "vuex-persist": "^2.0.0"
  83. },
  84. "postcss": {
  85. "plugins": {
  86. "autoprefixer": {}
  87. }
  88. },
  89. "engines": {
  90. "node": ">= 8.30.0"
  91. },
  92. "browserslist": [
  93. "> 1%",
  94. "last 2 versions",
  95. "not ie <= 8"
  96. ],
  97. "apidoc": {
  98. "url": "http://diran.univ-littoral.fr/api",
  99. "sampleUrl": "http://diran.univ-littoral.fr/api",
  100. "template": {
  101. "forceLanguage": "en"
  102. }
  103. },
  104. "ava": {
  105. "require": [
  106. "esm"
  107. ]
  108. }
  109. }