package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "dt-theme",
  3. "version": "1.0.4",
  4. "main": "lib/index.js",
  5. "dependencies": {
  6. "@testing-library/jest-dom": "^5.17.0",
  7. "@testing-library/react": "^13.4.0",
  8. "@testing-library/user-event": "^13.5.0",
  9. "react": "^18.3.1",
  10. "react-dom": "^18.3.1",
  11. "react-scripts": "5.0.1",
  12. "web-vitals": "^2.1.4"
  13. },
  14. "scripts": {
  15. "start": "react-scripts start",
  16. "build": "react-scripts build",
  17. "start-dev": "react-app-rewired start",
  18. "test": "react-scripts test",
  19. "eject": "react-scripts eject",
  20. "pub1": "npx webpack --config webpack.config.js && npm publish",
  21. "pub2": "npm version patch --no-git-tag-version && npx webpack --config webpack.config.js && npm publish"
  22. },
  23. "eslintConfig": {
  24. "extends": [
  25. "react-app",
  26. "react-app/jest"
  27. ]
  28. },
  29. "browserslist": {
  30. "production": [
  31. ">0.2%",
  32. "not dead",
  33. "not op_mini all"
  34. ],
  35. "development": [
  36. "last 1 chrome version",
  37. "last 1 firefox version",
  38. "last 1 safari version"
  39. ]
  40. },
  41. "files": [
  42. "lib"
  43. ],
  44. "devDependencies": {
  45. "webpack-cli": "^5.1.4",
  46. "less": "^4.2.0",
  47. "less-loader": "^11.1.3",
  48. "react-app-rewired": "^2.2.1",
  49. "customize-cra": "^1.0.0",
  50. "customize-cra-less-loader": "^2.0.0"
  51. }
  52. }