{ "private": true, "name": "fennec-fe", "version": "0.0.0", "license": "MIT", "scripts": { "build": "preact build", "serve": "sirv build --port 7123 --cors --single", "dev": "preact watch --port 7123", "predev": "npm run graphql", "graphql": "graphql-codegen --config codegen.yml", "lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'", "test": "jest ./tests" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{css,md,scss}": "prettier --write", "*.{js,jsx,ts,tsx}": "eslint --fix" }, "eslintIgnore": [ "build/*" ], "dependencies": { "@apollo/client": "^3.3.7", "@tailwindcss/postcss7-compat": "^2.0.2", "autoprefixer": "^9.8.6", "graphql": "^15.5.0", "mobx": "^6.1.4", "mobx-react": "^7.1.0", "postcss": "^7.0.35", "preact": "^10.3.1", "preact-jsx-chai": "^3.0.0", "preact-markup": "^2.0.0", "preact-render-to-string": "^5.1.4", "preact-router": "^3.2.1", "tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.2" }, "devDependencies": { "@graphql-codegen/cli": "^1.20.1", "@graphql-codegen/introspection": "^1.18.1", "@graphql-codegen/typescript-operations": "^1.17.14", "@graphql-codegen/typescript-react-apollo": "^2.2.1", "@teamsupercell/typings-for-css-modules-loader": "^2.2.0", "@types/enzyme": "^3.10.5", "@types/jest": "^26.0.8", "@types/webpack-env": "^1.15.1", "@typescript-eslint/eslint-plugin": "^2.25.0", "@typescript-eslint/parser": "^2.25.0", "css-loader": "^3.5.3", "enzyme": "^3.11.0", "enzyme-adapter-preact-pure": "^2.2.0", "eslint": "^6.8.0", "eslint-config-prettier": "^6.10.1", "eslint-plugin-prettier": "^3.1.2", "eslint-plugin-react": "^7.19.0", "eslint-plugin-react-hooks": "^3.0.0", "husky": "^4.2.1", "jest": "^26.2.2", "jest-preset-preact": "^4.0.2", "lint-staged": "^10.0.7", "preact-cli": "^3.0.0", "prettier": "^1.19.1", "sass": "^1.32.5", "sass-loader": "^10.1.1", "sirv-cli": "^1.0.0-next.3", "typescript": "^3.7.5" } }