Skip to content
This repository has been archived by the owner on Mar 9, 2021. It is now read-only.

Commit

Permalink
2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vinaypuppal committed Jan 1, 2018
1 parent a461134 commit d31abd6
Showing 1 changed file with 29 additions and 9 deletions.
38 changes: 29 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"name": "coderplex-app",
"version": "1.0.0",
"version": "2.0.0",
"description": "We are on a mission to improve the state of tech in India",
"main": "index.js",
"scripts": {
"test": "xo && jest",
"lint":
"prettier 'utils/**/*.js' 'components/**/*.js' 'pages/**/*.js' 'lib/**/*.js' 'hocs/**/*.js' '*.js' '*.json' --write && xo && markdownlint .",
"lint": "prettier 'utils/**/*.js' 'components/**/*.js' 'pages/**/*.js' 'lib/**/*.js' 'hocs/**/*.js' '*.js' '*.json' --write && xo && markdownlint .",
"precommit": "lint-staged",
"analyze": "cross-env ANALYZE=1 next build",
"dev": "cross-env NODE_ENV=development node server.js",
Expand All @@ -18,19 +17,32 @@
},
"xo": {
"parser": "babel-eslint",
"extends": ["prettier", "prettier/react", "plugin:react/recommended"],
"env": ["browser", "node"],
"extends": [
"prettier",
"prettier/react",
"plugin:react/recommended"
],
"env": [
"browser",
"node"
],
"rules": {
"linebreak-style": 0,
"react/display-name": 0,
"react/prop-types": 0
},
"space:": 2,
"ignores": ["next.config.js"],
"ignores": [
"next.config.js"
],
"overrides": [
{
"files": "**/__tests__/*.test.js",
"globals": ["describe", "it", "expect"]
"globals": [
"describe",
"it",
"expect"
]
}
]
},
Expand All @@ -41,8 +53,16 @@
"jest --findRelatedTests",
"git add"
],
"**/*.md": ["prettier", "markdownlint", "git add"],
".github/CONTRIBUTING.md": ["doctoc", "prettier", "git add"]
"**/*.md": [
"prettier",
"markdownlint",
"git add"
],
".github/CONTRIBUTING.md": [
"doctoc",
"prettier",
"git add"
]
},
"dependencies": {
"babel-plugin-emotion": "^8.0.10",
Expand Down

0 comments on commit d31abd6

Please sign in to comment.