package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "name": "misago-admin",
  3. "version": "0.1.0",
  4. "description": "Admin panel UI kit",
  5. "main": "./misago/admin/src/index.js",
  6. "scripts": {
  7. "watch": "NODE_ENV=development webpack -d -w",
  8. "build": "NODE_ENV=production webpack -p",
  9. "prettier": "prettier --write misago/admin/src/**/*.js",
  10. "test": "echo \"Error: no test specified\" && exit 1"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/rafalp/misago.git"
  15. },
  16. "author": "Rafał Pitoń",
  17. "license": "SEE LICENSE IN LICENSE.rst",
  18. "bugs": {
  19. "url": "https://github.com/rafalp/misago/issues"
  20. },
  21. "homepage": "https://github.com/rafalp/misago#readme",
  22. "dependencies": {
  23. "@babel/polyfill": "^7.2.5",
  24. "apexcharts": "^3.6.10",
  25. "apollo-boost": "^0.3.1",
  26. "bootstrap": "^4.3.1",
  27. "graphql": "^14.2.1",
  28. "jquery": "^3.4.0",
  29. "moment": "^2.24.0",
  30. "popper.js": "^1.14.7",
  31. "react": "^16.8.6",
  32. "react-apexcharts": "^1.3.3",
  33. "react-apollo": "^2.5.5",
  34. "react-dom": "^16.8.6"
  35. },
  36. "devDependencies": {
  37. "@babel/cli": "^7.2.3",
  38. "@babel/core": "^7.3.4",
  39. "@babel/plugin-proposal-export-default-from": "^7.2.0",
  40. "@babel/preset-env": "^7.3.4",
  41. "autoprefixer": "^9.4.7",
  42. "babel-eslint": "^9.0.0",
  43. "babel-loader": "^8.0.5",
  44. "babel-preset-react-app": "^8.0.0",
  45. "css-loader": "^2.1.0",
  46. "eslint": "^5.16.0",
  47. "eslint-config-react-app": "^4.0.0",
  48. "eslint-loader": "^2.1.2",
  49. "eslint-plugin-flowtype": "^2.50.3",
  50. "eslint-plugin-import": "^2.17.2",
  51. "eslint-plugin-jsx-a11y": "^6.2.1",
  52. "eslint-plugin-react": "^7.12.4",
  53. "eslint-plugin-react-hooks": "^1.5.0",
  54. "mini-css-extract-plugin": "^0.5.0",
  55. "node-sass": "^4.12.0",
  56. "postcss-loader": "^3.0.0",
  57. "prettier": "1.17.0",
  58. "sass-loader": "^7.1.0",
  59. "stylelint": "^9.10.1",
  60. "stylelint-config-twbs-bootstrap": "^0.3.0",
  61. "stylelint-webpack-plugin": "^0.10.5",
  62. "webpack": "^4.29.4",
  63. "webpack-cli": "^3.2.3"
  64. },
  65. "browserslist": [
  66. ">= 1%",
  67. "last 1 major version",
  68. "not dead",
  69. "Chrome >= 45",
  70. "Firefox >= 38",
  71. "Edge >= 12",
  72. "Explorer >= 10",
  73. "iOS >= 9",
  74. "Safari >= 9",
  75. "Android >= 4.4",
  76. "Opera >= 30"
  77. ],
  78. "babel": {
  79. "presets": [
  80. [
  81. "@babel/env",
  82. {
  83. "targets": {
  84. "edge": "17",
  85. "firefox": "60",
  86. "chrome": "67",
  87. "safari": "11.1"
  88. },
  89. "useBuiltIns": "usage"
  90. }
  91. ],
  92. "react-app"
  93. ],
  94. "plugins": [
  95. "@babel/plugin-transform-arrow-functions",
  96. "@babel/plugin-proposal-export-default-from"
  97. ]
  98. },
  99. "prettier": {
  100. "semi": false
  101. }
  102. }