blakeblackshear.frigate/web/package.json

59 lines
1.8 KiB
JSON
Raw Normal View History

2021-01-09 18:26:46 +01:00
{
"name": "frigate",
"private": true,
"scripts": {
2022-02-26 20:11:00 +01:00
"start": "SNOWPACK_PUBLIC_API_HOST=http://localhost:5000 snowpack dev",
"prebuild": "rimraf build",
2022-02-26 20:11:00 +01:00
"build": "SNOWPACK_PUBLIC_API_HOST='' NODE_ENV=production SNOWPACK_MODE=production snowpack build",
"lint": "npm run lint:cmd -- --fix",
2022-02-27 15:04:12 +01:00
"lint:cmd": "eslint ./ --ext .jsx,.js,.tsx,.ts",
2021-02-09 20:35:33 +01:00
"test": "jest"
2021-01-09 18:26:46 +01:00
},
"dependencies": {
2021-06-12 16:55:40 +02:00
"@cycjimmy/jsmpeg-player": "^5.0.1",
2022-02-26 20:11:00 +01:00
"axios": "^0.26.0",
2021-05-28 19:13:48 +02:00
"date-fns": "^2.21.3",
"idb-keyval": "^5.0.2",
2021-10-16 14:57:59 +02:00
"immer": "^9.0.6",
2022-02-26 20:11:00 +01:00
"preact": "^10.6.6",
"preact-async-route": "^2.2.1",
2022-02-26 20:11:00 +01:00
"preact-router": "^4.0.1",
"swr": "^1.2.2",
2021-09-12 21:48:21 +02:00
"video.js": "^7.15.4",
"videojs-playlist": "^4.3.1",
"videojs-seek-buttons": "^2.0.1"
},
"devDependencies": {
2022-02-26 20:11:00 +01:00
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-react-jsx": "^7.12.13",
"@babel/preset-env": "^7.12.13",
2022-02-27 15:04:12 +01:00
"@babel/preset-typescript": "^7.16.7",
2022-02-26 20:11:00 +01:00
"@prefresh/snowpack": "^3.1.4",
"@snowpack/plugin-postcss": "^1.1.0",
2022-02-26 20:11:00 +01:00
"@snowpack/plugin-typescript": "^1.2.1",
"@tailwindcss/forms": "^0.4.0",
2021-02-09 20:35:33 +01:00
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/preact": "^2.0.1",
2021-02-14 18:31:57 +01:00
"@testing-library/user-event": "^12.7.1",
2022-02-27 15:04:12 +01:00
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
2022-02-26 20:11:00 +01:00
"autoprefixer": "^10.4.2",
2021-01-09 18:26:46 +01:00
"cross-env": "^7.0.3",
2022-02-26 20:11:00 +01:00
"eslint": "^8.10.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-testing-library": "^5.0.5",
2021-10-16 15:12:22 +02:00
"jest": "^26.6.3",
2022-02-26 20:11:00 +01:00
"postcss": "^8.4.7",
"postcss-cli": "^8.3.1",
2022-02-26 20:11:00 +01:00
"preact-cli": "^3.3.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
2022-02-26 20:11:00 +01:00
"snowpack": "^3.8.8",
"snowpack-plugin-hash": "^0.16.0",
"tailwindcss": "^3.0.23"
2021-01-09 18:26:46 +01:00
}
}