package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. {
  2. "name": "kutt",
  3. "version": "1.2.1",
  4. "description": "Modern URL shortener.",
  5. "main": "./server/server.js",
  6. "scripts": {
  7. "test": "mocha --compilers js:@babel/register ./client/**/__test__/*.js",
  8. "dev": "nodemon ./server/server.js",
  9. "build": "next build ./client",
  10. "start": "NODE_ENV=production node ./server/server.js",
  11. "lint": "./node_modules/.bin/eslint . --fix",
  12. "lint:nofix": "./node_modules/.bin/eslint ."
  13. },
  14. "husky": {
  15. "hooks": {
  16. "pre-commit": "npm run lint:nofix"
  17. }
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/TheDevs-Network/kutt.git"
  22. },
  23. "keywords": [
  24. "url-shortener"
  25. ],
  26. "author": "Pouria Ezzati <ezzati.upt@gmail.com>",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/TheDevs-Network/kutt/issues"
  30. },
  31. "homepage": "https://github.com/TheDevs-Network/kutt#readme",
  32. "dependencies": {
  33. "axios": "^0.19.0",
  34. "bcryptjs": "^2.4.3",
  35. "body-parser": "^1.18.3",
  36. "cookie-parser": "^1.4.4",
  37. "cors": "^2.8.5",
  38. "date-fns": "^1.30.1",
  39. "dotenv": "^8.0.0",
  40. "email-validator": "^1.2.3",
  41. "express": "^4.16.4",
  42. "express-validator": "^4.3.0",
  43. "geoip-lite": "^1.3.6",
  44. "helmet": "^3.15.1",
  45. "isbot": "^2.2.1",
  46. "js-cookie": "^2.2.0",
  47. "jsonwebtoken": "^8.4.0",
  48. "jwt-decode": "^2.2.0",
  49. "lodash": "^4.17.11",
  50. "morgan": "^1.9.1",
  51. "ms": "^2.1.1",
  52. "nanoid": "^1.3.4",
  53. "natives": "^1.1.6",
  54. "neo4j-driver": "^1.7.2",
  55. "next": "^7.0.3",
  56. "next-redux-wrapper": "^2.1.0",
  57. "node-cron": "^2.0.3",
  58. "nodemailer": "^4.7.0",
  59. "passport": "^0.4.0",
  60. "passport-jwt": "^4.0.0",
  61. "passport-local": "^1.0.0",
  62. "passport-localapikey-update": "^0.6.0",
  63. "prop-types": "^15.7.2",
  64. "qrcode.react": "^0.8.0",
  65. "raven": "^2.6.4",
  66. "react": "^16.8.1",
  67. "react-copy-to-clipboard": "^5.0.1",
  68. "react-dom": "^16.8.1",
  69. "react-ga": "^2.5.7",
  70. "react-inlinesvg": "^0.7.5",
  71. "react-redux": "^6.0.0",
  72. "recharts": "^1.4.3",
  73. "redis": "^2.8.0",
  74. "redux": "^4.0.1",
  75. "redux-devtools-extension": "^2.13.8",
  76. "redux-thunk": "^2.3.0",
  77. "styled-components": "^4.1.3",
  78. "universal-analytics": "^0.4.20",
  79. "url-regex": "^4.1.1",
  80. "useragent": "^2.2.1"
  81. },
  82. "devDependencies": {
  83. "@babel/cli": "^7.2.3",
  84. "@babel/core": "^7.2.2",
  85. "@babel/node": "^7.2.2",
  86. "@babel/preset-env": "^7.3.1",
  87. "@babel/register": "^7.0.0",
  88. "babel": "^6.23.0",
  89. "babel-cli": "^6.26.0",
  90. "babel-core": "^6.26.3",
  91. "babel-eslint": "^8.2.6",
  92. "babel-plugin-styled-components": "^1.10.0",
  93. "babel-preset-env": "^1.7.0",
  94. "chai": "^4.1.2",
  95. "deep-freeze": "^0.0.1",
  96. "eslint": "^4.19.1",
  97. "eslint-config-airbnb": "^16.1.0",
  98. "eslint-config-prettier": "^2.10.0",
  99. "eslint-plugin-import": "^2.16.0",
  100. "eslint-plugin-jsx-a11y": "^6.2.1",
  101. "eslint-plugin-prettier": "^2.7.0",
  102. "eslint-plugin-react": "^7.12.4",
  103. "husky": "^0.15.0-rc.13",
  104. "mocha": "^5.2.0",
  105. "nock": "^9.3.3",
  106. "nodemon": "^1.18.10",
  107. "prettier": "^1.16.4",
  108. "redux-mock-store": "^1.5.3",
  109. "sinon": "^6.0.0"
  110. }
  111. }