You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.9 KiB

3 years ago
  1. {
  2. "private": true,
  3. "scripts": {
  4. "dev": "webpack --mode development --watch",
  5. "build": "NODE_ENV=production webpack --mode production",
  6. "format": "prettier --write 'resources/**/*.{css,js,ts,vue}'"
  7. },
  8. "dependencies": {
  9. "git-url-parse": "^11.1.2",
  10. "highlight.js": "^10.4.1",
  11. "lodash": "^4.17.21",
  12. "markdown-it": "^9.0.1",
  13. "md5": "^2.2.1",
  14. "sql-formatter": "^2.3.3"
  15. },
  16. "devDependencies": {
  17. "@babel/core": "^7.4.5",
  18. "@babel/plugin-syntax-dynamic-import": "^7.2.0",
  19. "@babel/plugin-transform-runtime": "^7.4.4",
  20. "@babel/preset-env": "^7.4.5",
  21. "@babel/preset-typescript": "^7.3.3",
  22. "@fullhuman/postcss-purgecss": "^1.1.0",
  23. "@types/jest": "^24.0.15",
  24. "@types/lodash": "^4.14.133",
  25. "babel-loader": "^8.0.6",
  26. "css-loader": "^3.0.0",
  27. "husky": "^1.3.1",
  28. "jest": "^24.8.0",
  29. "lint-staged": "^8.1.5",
  30. "postcss-import": "^12.0.1",
  31. "postcss-loader": "^3.0.0",
  32. "postcss-preset-env": "^6.6.0",
  33. "prettier": "^1.16.4",
  34. "style-loader": "^0.23.1",
  35. "tailwindcss": "^1.0.4",
  36. "typescript": "^3.5.2",
  37. "vue": "^2.6.10",
  38. "vue-loader": "^15.7.0",
  39. "vue-template-compiler": "^2.6.10",
  40. "webpack": "^4.35.0",
  41. "webpack-cli": "^3.3.5"
  42. },
  43. "husky": {
  44. "hooks": {
  45. "pre-commit": "lint-staged && yarn build && git add resources/compiled/ignition.js"
  46. }
  47. },
  48. "lint-staged": {
  49. "linters": {
  50. "*.{css,js,ts,vue}": [
  51. "yarn format",
  52. "git add"
  53. ]
  54. },
  55. "ignore": [
  56. "resources/compiled/**/*"
  57. ]
  58. },
  59. "jest": {
  60. "testPathIgnorePatterns": [
  61. "/node_modules/",
  62. "/__helpers__/"
  63. ]
  64. }
  65. }