Last active
June 5, 2017 16:46
-
-
Save fresh5447/343002c5eb930fc29a9e5248417049b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "client", | |
| "version": "0.1.0", | |
| "private": true, | |
| "proxy": "http://localhost:3001/", | |
| "scripts": { | |
| "clean": "rimraf", | |
| "start": "react-scripts start", | |
| "build": "react-scripts build", | |
| "test": "react-scripts test --env=jsdom", | |
| "eject": "react-scripts eject", | |
| "lint": "eslint .", | |
| "lint:fix": "eslint . --fix" | |
| }, | |
| "devDependencies": { | |
| "babel-plugin-module-resolver": "^2.7.1", | |
| "babel-preset-es2015": "^6.24.1", | |
| "babel-preset-stage-0": "^6.24.1", | |
| "babel-eslint": "^7.2.3", | |
| "custom-react-scripts": "0.0.23", | |
| "eslint": "^3.19.0", | |
| "eslint-config-standard": "^10.2.1", | |
| "eslint-config-standard-react": "^5.0.0", | |
| "eslint-plugin-import": "^2.3.0", | |
| "eslint-plugin-node": "^4.2.2", | |
| "eslint-plugin-promise": "^3.5.0", | |
| "eslint-plugin-react": "^7.0.1", | |
| "eslint-plugin-standard": "^3.0.1", | |
| "lodash": "^4.17.4", | |
| "rimraf": "^2.6.1" | |
| }, | |
| "dependencies": { | |
| "babel-runtime": "^6.23.0", | |
| "apollo-client": "^0.8.2", | |
| "auth0-lock": "^10.6.1", | |
| "bootstrap": "^3.3.7", | |
| "graphql-tag": "^1.2.4", | |
| "moment": "^2.18.1", | |
| "react": "^15.3.1", | |
| "react-apollo": "^0.10.0", | |
| "react-collapsible": "^1.4.0", | |
| "react-dom": "^15.3.1", | |
| "react-icons": "^2.2.5", | |
| "prop-types": "^15.5.10", | |
| "react-redux": "^5.0.4", | |
| "react-responsive-accordion": "^1.0.0", | |
| "react-router": "^4.1.1", | |
| "react-router-dom": "^4.1.1", | |
| "react-router-redux": "^4.0.8", | |
| "recompose": "^0.23.4", | |
| "redux": "^3.6.0", | |
| "redux-thunk": "^2.2.0", | |
| "tachyons": "^4.3.1" | |
| }, | |
| "babel": { | |
| "presets": [ | |
| "es2015", | |
| "stage0" | |
| ], | |
| "plugins": [ | |
| [ | |
| "module-resolver", | |
| { | |
| "alias": { | |
| "components": "./src/components", | |
| "containers": "./src/containers" | |
| } | |
| } | |
| ] | |
| ] | |
| }, | |
| "eslintConfig": { | |
| "env": { | |
| "browser": true, | |
| "node": true | |
| }, | |
| "extends": [ | |
| "standard", | |
| "standard-react" | |
| ], | |
| "globals": {}, | |
| "parser": "babel-eslint", | |
| "plugins": [], | |
| "root": true, | |
| "rules": { | |
| "brace-style": [ | |
| "error", | |
| "stroustrup" | |
| ], | |
| "react/react-in-jsx-scope": "off" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment