blakeblackshear.frigate/web/package.json

45 lines
1.4 KiB
JSON
Raw Normal View History

2021-01-09 18:26:46 +01:00
{
"name": "frigate",
"private": true,
"scripts": {
2021-02-07 16:33:37 +01:00
"start": "cross-env SNOWPACK_PUBLIC_API_HOST=http://localhost:5000 snowpack dev",
"prebuild": "rimraf build",
"build": "cross-env NODE_ENV=production SNOWPACK_MODE=production SNOWPACK_PUBLIC_API_HOST='' snowpack build",
"lint": "npm run lint:cmd -- --fix",
2021-02-09 20:35:33 +01:00
"lint:cmd": "eslint ./ --ext .jsx,.js",
"test": "jest"
2021-01-09 18:26:46 +01:00
},
"dependencies": {
"idb-keyval": "^5.0.2",
"immer": "^8.0.1",
"preact": "^10.5.9",
"preact-async-route": "^2.2.1",
"preact-router": "^3.2.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.12.13",
"@babel/plugin-transform-react-jsx": "^7.12.13",
"@babel/preset-env": "^7.12.13",
2021-01-09 18:26:46 +01:00
"@prefresh/snowpack": "^3.0.1",
"@snowpack/plugin-postcss": "^1.1.0",
2021-02-09 20:35:33 +01:00
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/preact": "^2.0.1",
2021-01-09 18:26:46 +01:00
"autoprefixer": "^10.2.1",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-preact": "^1.1.3",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
2021-02-09 20:35:33 +01:00
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-testing-library": "^3.10.1",
"jest": "^26.6.3",
"postcss": "^8.2.2",
"postcss-cli": "^8.3.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"snowpack": "^3.0.11",
"snowpack-plugin-hash": "^0.14.2",
2021-01-09 18:26:46 +01:00
"tailwindcss": "^2.0.2"
}
}