b68/package.json

37 lines
1.0 KiB
JSON
Raw Normal View History

2022-12-03 11:18:44 +00:00
{
2022-12-19 13:45:55 +00:00
"name": "b68",
2022-12-03 11:18:44 +00:00
"version": "1.0.0",
2022-12-19 13:45:55 +00:00
"description": "B68 Module",
"repository": "git@github.com:b68dev/b68.git",
2022-12-03 11:18:44 +00:00
"author": "Jyotirmoy Bandyopadhyaya [Bravo68] <jbandyopadhayaya@gmail.com>",
"license": "MIT",
"private": true,
"devDependencies": {
2023-04-20 08:16:15 +00:00
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
2023-04-22 06:18:57 +00:00
"@typescript-eslint/utils": "^5.59.0",
2023-04-20 08:16:15 +00:00
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
2022-12-03 11:18:44 +00:00
"husky": "^8.0.2",
2022-12-19 13:45:55 +00:00
"lerna": "^6.1.0",
2023-04-20 08:16:15 +00:00
"lint-staged": "^13.0.4"
2022-12-03 11:18:44 +00:00
},
"scripts": {
2023-04-20 08:16:15 +00:00
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\""
2022-12-03 11:18:44 +00:00
},
"lint-staged": {
2023-04-20 08:16:15 +00:00
"**/*.{js,json,ts,css}": [
"eslint --fix",
"prettier --write \"**/*.{ts,tsx,js,jsx,json,css,scss,md}\""
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
2022-12-19 13:45:55 +00:00
},
"workspaces": [
"packages/*"
]
2022-12-03 11:18:44 +00:00
}