{ "name": "photoview-ui", "version": "0.0.1", "license": "GPL-3.0", "description": "UI app for Photoview", "dependencies": { "@babel/preset-env": "^7.8.3", "apollo-cache-inmemory": "^1.6.3", "apollo-client": "^2.6.4", "apollo-link": "^1.2.13", "apollo-link-context": "^1.0.19", "apollo-link-error": "^1.1.12", "apollo-link-http": "^1.5.16", "apollo-link-ws": "^1.0.19", "babel-plugin-styled-components": "^1.10.6", "copy-to-clipboard": "^3.2.0", "downloadjs": "^1.4.7", "graphql": "^14.5.0", "graphql-tag": "^2.10.1", "parcel-bundler": "^1.12.4", "prettier": "^1.19.1", "prop-types": "^15.7.2", "react": "^16.9.0", "react-apollo": "^3.0.1", "react-dom": "^16.9.0", "react-lazyload": "^2.6.5", "react-router-dom": "^5.1.2", "react-spring": "^8.0.27", "semantic-ui-css": "^2.4.1", "semantic-ui-react": "^0.88.0", "styled-components": "^5.0.0", "subscriptions-transport-ws": "^0.9.16" }, "scripts": { "start": "parcel start src/index.html", "build": "parcel build src/index.html", "test": "react-scripts test --env=jsdom", "eject": "react-scripts eject", "now-build": "react-scripts build" }, "devDependencies": { "@babel/core": "^7.8.3", "@babel/plugin-transform-runtime": "^7.8.3", "babel-eslint": "^10.0.3", "eslint": "^6.8.0", "eslint-plugin-react": "^7.18.0", "eslint-plugin-react-hooks": "^2.3.0", "husky": "^4.0.10", "isarray": "^2.0.5", "lint-staged": "^10.0.0", "react-router-prop-types": "^1.0.4" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "prettier": { "trailingComma": "es5", "tabWidth": 2, "semi": false, "singleQuote": true }, "babel": { "presets": [ [ "@babel/preset-env", { "useBuiltIns": "entry" } ] ], "plugins": [ "babel-plugin-styled-components", "@babel/plugin-transform-runtime" ] }, "lint-staged": { "*.{js,json,css,md,graphql}": [ "prettier --write", "git add" ] }, "browserslist": [ ">0.2%", "not dead", "not ie <= 11", "not op_mini all" ] }