package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. "idb-keyval": "^5.0.2",
  15. "immer": "^8.0.1",
  16. "preact": "^10.5.9",
  17. "preact-async-route": "^2.2.1",
  18. "preact-router": "^3.2.1"
  19. },
  20. "devDependencies": {
  21. "@babel/eslint-parser": "^7.12.13",
  22. "@babel/plugin-transform-react-jsx": "^7.12.13",
  23. "@babel/preset-env": "^7.12.13",
  24. "@prefresh/snowpack": "^3.0.1",
  25. "@snowpack/plugin-postcss": "^1.1.0",
  26. "@testing-library/jest-dom": "^5.11.9",
  27. "@testing-library/preact": "^2.0.1",
  28. "@testing-library/user-event": "^12.7.1",
  29. "autoprefixer": "^10.2.1",
  30. "cross-env": "^7.0.3",
  31. "eslint": "^7.19.0",
  32. "eslint-config-preact": "^1.1.3",
  33. "eslint-config-prettier": "^7.2.0",
  34. "eslint-plugin-import": "^2.22.1",
  35. "eslint-plugin-jest": "^24.1.3",
  36. "eslint-plugin-testing-library": "^3.10.1",
  37. "jest": "^26.6.3",
  38. "postcss": "^8.2.2",
  39. "postcss-cli": "^8.3.1",
  40. "prettier": "^2.2.1",
  41. "rimraf": "^3.0.2",
  42. "snowpack": "^3.0.11",
  43. "snowpack-plugin-hash": "^0.14.2",
  44. "tailwindcss": "^2.0.2"
  45. }
  46. }