package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "name": "kutt",
  3. "version": "1.2.0",
  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 -w ./server/**/*.js ./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.18.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. "email-validator": "^1.2.3",
  40. "express": "^4.16.4",
  41. "express-validator": "^4.3.0",
  42. "geoip-lite": "^1.3.6",
  43. "helmet": "^3.15.1",
  44. "isbot": "^2.2.1",
  45. "js-cookie": "^2.2.0",
  46. "jsonwebtoken": "^8.4.0",
  47. "jwt-decode": "^2.2.0",
  48. "lodash": "^4.17.11",
  49. "morgan": "^1.9.1",
  50. "ms": "^2.1.1",
  51. "nanoid": "^1.3.4",
  52. "natives": "^1.1.6",
  53. "neo4j-driver": "^1.7.2",
  54. "next": "^7.0.3",
  55. "next-redux-wrapper": "^2.1.0",
  56. "nodemailer": "^4.7.0",
  57. "passport": "^0.4.0",
  58. "passport-jwt": "^4.0.0",
  59. "passport-local": "^1.0.0",
  60. "passport-localapikey-update": "^0.6.0",
  61. "prop-types": "^15.7.2",
  62. "qrcode.react": "^0.8.0",
  63. "raven": "^2.6.4",
  64. "react": "^16.8.1",
  65. "react-copy-to-clipboard": "^5.0.1",
  66. "react-dom": "^16.8.1",
  67. "react-ga": "^2.5.7",
  68. "react-inlinesvg": "^0.7.5",
  69. "react-redux": "^6.0.0",
  70. "recharts": "^1.4.3",
  71. "redis": "^2.8.0",
  72. "redux": "^4.0.1",
  73. "redux-devtools-extension": "^2.13.8",
  74. "redux-thunk": "^2.3.0",
  75. "styled-components": "^4.1.3",
  76. "universal-analytics": "^0.4.20",
  77. "url-regex": "^4.1.1",
  78. "useragent": "^2.2.1"
  79. },
  80. "devDependencies": {
  81. "@babel/cli": "^7.2.3",
  82. "@babel/core": "^7.2.2",
  83. "@babel/node": "^7.2.2",
  84. "@babel/preset-env": "^7.3.1",
  85. "@babel/register": "^7.0.0",
  86. "babel": "^6.23.0",
  87. "babel-cli": "^6.26.0",
  88. "babel-core": "^6.26.3",
  89. "babel-eslint": "^8.2.6",
  90. "babel-plugin-styled-components": "^1.10.0",
  91. "babel-preset-env": "^1.7.0",
  92. "chai": "^4.1.2",
  93. "deep-freeze": "^0.0.1",
  94. "eslint": "^4.19.1",
  95. "eslint-config-airbnb": "^16.1.0",
  96. "eslint-config-prettier": "^2.10.0",
  97. "eslint-plugin-import": "^2.16.0",
  98. "eslint-plugin-jsx-a11y": "^6.2.1",
  99. "eslint-plugin-prettier": "^2.7.0",
  100. "eslint-plugin-react": "^7.12.4",
  101. "husky": "^0.15.0-rc.13",
  102. "mocha": "^5.2.0",
  103. "nock": "^9.3.3",
  104. "nodemon": "^1.18.10",
  105. "prettier": "^1.16.4",
  106. "redux-mock-store": "^1.5.3",
  107. "sinon": "^6.0.0"
  108. }
  109. }