package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "frigate",
  3. "private": true,
  4. "scripts": {
  5. "start": "cross-env SNOWPACK_PUBLIC_API_HOST=http://localhost:5000 snowpack dev",
  6. "start:custom": "snowpack dev",
  7. "prebuild": "rimraf build",
  8. "build": "cross-env NODE_ENV=production SNOWPACK_MODE=production SNOWPACK_PUBLIC_API_HOST='' snowpack build",
  9. "lint": "npm run lint:cmd -- --fix",
  10. "lint:cmd": "eslint ./ --ext .jsx,.js",
  11. "test": "jest"
  12. },
  13. "dependencies": {
  14. "date-fns": "^2.21.3",
  15. "idb-keyval": "^5.0.2",
  16. "immer": "^8.0.1",
  17. "preact": "^10.5.9",
  18. "preact-async-route": "^2.2.1",
  19. "preact-router": "^3.2.1",
  20. "video.js": "^7.11.8",
  21. "videojs-playlist": "^4.3.1",
  22. "videojs-seek-buttons": "^2.0.1"
  23. },
  24. "devDependencies": {
  25. "@babel/eslint-parser": "^7.12.13",
  26. "@babel/plugin-transform-react-jsx": "^7.12.13",
  27. "@babel/preset-env": "^7.12.13",
  28. "@prefresh/snowpack": "^3.0.1",
  29. "@snowpack/plugin-postcss": "^1.1.0",
  30. "@testing-library/jest-dom": "^5.11.9",
  31. "@testing-library/preact": "^2.0.1",
  32. "@testing-library/user-event": "^12.7.1",
  33. "autoprefixer": "^10.2.1",
  34. "cross-env": "^7.0.3",
  35. "eslint": "^7.19.0",
  36. "eslint-config-preact": "^1.1.3",
  37. "eslint-config-prettier": "^7.2.0",
  38. "eslint-plugin-import": "^2.22.1",
  39. "eslint-plugin-jest": "^24.1.3",
  40. "eslint-plugin-testing-library": "^3.10.1",
  41. "jest": "^26.6.3",
  42. "postcss": "^8.2.10",
  43. "postcss-cli": "^8.3.1",
  44. "prettier": "^2.2.1",
  45. "rimraf": "^3.0.2",
  46. "snowpack": "^3.0.11",
  47. "snowpack-plugin-hash": "^0.14.2",
  48. "tailwindcss": "^2.0.2"
  49. }
  50. }