Skip to content

Instantly share code, notes, and snippets.

@cinic
Created August 30, 2018 17:54
Show Gist options
  • Save cinic/1e1e72db2f5e2cb3e00c58919546fd6a to your computer and use it in GitHub Desktop.
Save cinic/1e1e72db2f5e2cb3e00c58919546fd6a to your computer and use it in GitHub Desktop.
Package for Exchange UI App
{
"name": "exchange",
"version": "1.0.0",
"description": "Exchange frontend application",
"main": "src/index.js",
"author": "cinic",
"license": "UNLICENSED",
"private": true,
"scripts": {
"start": "babel-node server.js",
"lint": "standard --verbose | snazzy",
"lint:fix": "standard --fix | snazzy",
"test": "jest",
"postinstall": "node ./setup/install-hooks.js"
},
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"address": "^1.0.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-react-flow-props-to-prop-types": "^0.15.0",
"babel-plugin-styled-components": "^1.5.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"express": "^4.16.3",
"flow-bin": "^0.76.0",
"flow-typed": "^2.5.1",
"jest": "^23.4.1",
"prettier": "1.13.7",
"react-hot-loader": "^4.3.3",
"rollup": "^0.63.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0",
"snazzy": "^7.1.1",
"standard": "^11.0.1",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.3"
},
"dependencies": {
"d3": "^5.5.0",
"prop-types": "^15.6.2",
"prop-types-extra": "^1.1.0",
"ramda": "^0.25.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"reselect": "^3.0.1",
"styled-components": "^3.3.3"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/flow-typed/"
],
"plugins": [
"flowtype",
"react",
"import",
"promise"
],
"globals": [
"$ReadOnly",
"$Values",
"Element"
]
},
"babel": {
"presets": [
[
"env",
{
"useBuiltIns": "usage",
"debug": true,
"targets": {
"browsers": [
">0.25%"
]
}
}
],
"react"
],
"env": {
"test": {
"presets": [
[
"env",
{
"modules": false
}
],
"react"
]
}
},
"plugins": [
"react-flow-props-to-prop-types",
"babel-plugin-styled-components",
"transform-decorators-legacy",
"transform-class-properties"
]
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"jsxBracketSameLine": false,
"overrides": [
{
"files": [
"*.js"
],
"options": {
"parser": "babylon"
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment