package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. "bootstrap": "^4.3.1",
  25. "jquery": "^3.4.0",
  26. "moment": "^2.24.0",
  27. "popper.js": "^1.14.7",
  28. "react": "^16.8.6",
  29. "react-dom": "^16.8.6"
  30. },
  31. "devDependencies": {
  32. "@babel/cli": "^7.2.3",
  33. "@babel/core": "^7.3.4",
  34. "@babel/plugin-proposal-export-default-from": "^7.2.0",
  35. "@babel/preset-env": "^7.3.4",
  36. "autoprefixer": "^9.4.7",
  37. "babel-eslint": "^9.0.0",
  38. "babel-loader": "^8.0.5",
  39. "babel-preset-react-app": "^8.0.0",
  40. "css-loader": "^2.1.0",
  41. "eslint": "^5.16.0",
  42. "eslint-config-react-app": "^4.0.0",
  43. "eslint-loader": "^2.1.2",
  44. "eslint-plugin-flowtype": "^2.50.3",
  45. "eslint-plugin-import": "^2.17.2",
  46. "eslint-plugin-jsx-a11y": "^6.2.1",
  47. "eslint-plugin-react": "^7.12.4",
  48. "eslint-plugin-react-hooks": "^1.5.0",
  49. "mini-css-extract-plugin": "^0.5.0",
  50. "node-sass": "^4.12.0",
  51. "postcss-loader": "^3.0.0",
  52. "prettier": "1.17.0",
  53. "sass-loader": "^7.1.0",
  54. "stylelint": "^9.10.1",
  55. "stylelint-config-twbs-bootstrap": "^0.3.0",
  56. "stylelint-webpack-plugin": "^0.10.5",
  57. "webpack": "^4.29.4",
  58. "webpack-cli": "^3.2.3"
  59. },
  60. "browserslist": [
  61. ">= 1%",
  62. "last 1 major version",
  63. "not dead",
  64. "Chrome >= 45",
  65. "Firefox >= 38",
  66. "Edge >= 12",
  67. "Explorer >= 10",
  68. "iOS >= 9",
  69. "Safari >= 9",
  70. "Android >= 4.4",
  71. "Opera >= 30"
  72. ],
  73. "babel": {
  74. "presets": [
  75. [
  76. "@babel/env",
  77. {
  78. "targets": {
  79. "edge": "17",
  80. "firefox": "60",
  81. "chrome": "67",
  82. "safari": "11.1"
  83. },
  84. "useBuiltIns": "usage"
  85. }
  86. ],
  87. "react-app"
  88. ],
  89. "plugins": [
  90. "@babel/plugin-transform-arrow-functions",
  91. "@babel/plugin-proposal-export-default-from"
  92. ]
  93. },
  94. "prettier": {
  95. "semi": false
  96. }
  97. }