12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "frigate",
- "private": true,
- "scripts": {
- "start": "cross-env SNOWPACK_PUBLIC_API_HOST=http://localhost:5000 snowpack dev",
- "start:custom": "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",
- "lint:cmd": "eslint ./ --ext .jsx,.js",
- "test": "jest"
- },
- "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",
- "@prefresh/snowpack": "^3.0.1",
- "@snowpack/plugin-postcss": "^1.1.0",
- "@testing-library/jest-dom": "^5.11.9",
- "@testing-library/preact": "^2.0.1",
- "@testing-library/user-event": "^12.7.1",
- "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",
- "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",
- "tailwindcss": "^2.0.2"
- }
- }
|