Remove useless dependencies

This commit is contained in:
seunghyunOh
2022-12-10 12:28:46 +09:00
parent 9a3caac75f
commit ad907fa373
5 changed files with 19091 additions and 21257 deletions

39076
backend/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -39,12 +39,6 @@
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Infisical/infisical-api.git"
@ -71,10 +65,8 @@
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"install": "^0.13.0",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.19",
"npm": "^8.19.3",
"prettier": "^2.7.1",

File diff suppressed because it is too large Load Diff

View File

@ -6,14 +6,7 @@
"build": "next build",
"start": "next start",
"start:docker": "next build && next start",
"lint": "next lint",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
"lint": "next lint"
},
"dependencies": {
"@emotion/css": "^11.10.0",
@ -72,7 +65,6 @@
"postcss": "^8.4.14",
"prettier": "2.7.1",
"tailwindcss": "^3.1.4",
"typescript": "^4.9.3",
"lint-staged": "^13.1.0"
"typescript": "^4.9.3"
}
}

View File

@ -15,7 +15,7 @@
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{ts,tsx}": [
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]