Skip to content

Commit

Permalink
fix: Issue with missing dependencies and scripts in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
one-aalam committed Apr 6, 2020
1 parent 6b197e2 commit 542e699
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
19 changes: 13 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"tslint": "tslint -p . -c tslint.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
Expand All @@ -27,18 +27,25 @@
"@types/node": "^13.11.0",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"auto-changelog": "^1.16.4",
"babel-jest": "^25.2.6",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.2.7",
"lint-staged": "^10.1.2",
"prettier": "^2.0.2",
"react-test-renderer": "^16.13.1",
"tslint": "^6.1.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-react-hooks": "^2.2.2",
"typescript": "^3.8.3"
},
"husky": {
Expand All @@ -49,8 +56,8 @@
"lint-staged": {
"*.+(ts|tsx)": [
"prettier --write",
"jest --findRelatedTests",
"tslint"
"lint",
"jest --findRelatedTests"
]
},
"prettier": {
Expand Down
7 changes: 7 additions & 0 deletions tsconfig.eslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
// extends your base config so you don't have to redefine your compilerOptions
"extends": "./tsconfig.json",
"include": [
"**/*.js"
]
}

0 comments on commit 542e699

Please sign in to comment.