oneuptime/package.json
2020-12-18 09:34:10 +03:00

60 lines
1.9 KiB
JSON

{
"name": "app",
"version": "3.0.0",
"description": "One Complete SRE and DevOps platform.",
"main": "index.js",
"dependencies": {
"prismjs": "^1.20.0",
"react-markdown": "^4.3.1",
"react-simple-code-editor": "^0.11.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-private-methods": "^7.10.1",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.5",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1"
},
"scripts": {
"delete-all-local-branches": "git branch | grep -v 'master' | xargs git branch -D",
"lint": "eslint '**/*.js' -c .eslintrc.json --ignore-path .eslintignore",
"fix-lint": "eslint '**/*.js' -c .eslintrc.json --ignore-path .eslintignore --fix"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/fyipe-project/app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/fyipe-project/app/issues"
},
"homepage": "https://gitlab.com/fyipe-project/app#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{json,yml,yaml,md}": [
"prettier --write --config .prettierrc.json",
"git add"
],
"./**/*.{js}": [
"eslint -c .eslintrc.json --ignore-path .eslintignore --fix",
"git add"
]
}
}