{ "name": "photoview-ui", "version": "0.0.1", "license": "GPL-3.0", "description": "UI app for Photoview", "dependencies": { "@babel/preset-env": "^7.12.7", "@types/react": "^17.0.0", "babel-plugin-styled-components": "^1.12.0", "copy-to-clipboard": "^3.3.1", "graphql": "^15.4.0", "prop-types": "^15.7.2", "react": "^17.0.1", "react-dom": "^17.0.1", "react-helmet": "^6.1.0", "react-lazyload": "^3.1.0", "react-router-dom": "^5.2.0", "react-spring": "^8.0.27", "semantic-ui-css": "^2.4.1", "semantic-ui-react": "^2.0.1", "styled-components": "^5.2.1", "subscriptions-transport-ws": "^0.9.18", "url-join": "^4.0.1" }, "scripts": { "start": "node build.js watch", "build": "NODE_ENV=production node build.js", "test": "npm run lint && npm run jest", "lint": "eslint ./src --max-warnings 0 --cache", "jest": "jest" }, "devDependencies": { "@apollo/client": "^3.3.4", "@babel/core": "^7.12.9", "@babel/plugin-transform-modules-commonjs": "^7.12.1", "@babel/plugin-transform-runtime": "^7.12.1", "@babel/preset-react": "^7.12.7", "@testing-library/jest-dom": "^5.11.6", "@testing-library/react": "^11.2.2", "babel-eslint": "^10.1.0", "babel-jest": "^26.6.3", "babel-plugin-graphql-tag": "^3.1.0", "babel-plugin-transform-semantic-ui-react-imports": "^1.4.1", "browser-sync": "^2.26.14", "connect-history-api-fallback": "^1.6.0", "dotenv": "^8.2.0", "esbuild": "^0.8.52", "eslint": "^7.15.0", "eslint-plugin-jest": "^24.1.3", "eslint-plugin-jest-dom": "^3.6.3", "eslint-plugin-react": "^7.21.5", "eslint-plugin-react-hooks": "^4.2.0", "fs-extra": "^4.0.3", "husky": "^4.3.5", "jest": "^26.6.3", "lint-staged": "^10.5.3", "mapbox-gl": "^1.13.0", "parcel-plugin-sw-cache": "^0.3.1", "prettier": "^2.2.1", "react-router-prop-types": "^1.0.5", "react-test-renderer": "^17.0.1" }, "cache": { "swDest": "service-worker.js" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "prettier": { "trailingComma": "es5", "tabWidth": 2, "semi": false, "singleQuote": true, "arrowParens": "avoid" }, "jest": { "transformIgnorePatterns": [ "^.+\\.css$" ], "transform": { "^.+\\.js$": "babel-jest", "^.+\\.svg$": "/testing/transform-svg.js" } }, "lint-staged": { "*.{js,json,css,md,graphql}": "prettier --write", "*.js": "eslint --cache --fix --max-warnings 0" }, "browserslist": [ ">0.2%", "not dead", "not ie <= 11", "not op_mini all" ] }