package.json 1.4 KB

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