Files
web2.0-backend/package.json
2025-02-09 21:20:38 +02:00

36 lines
881 B
JSON

{
"name": "web2.0",
"version": "1.0.0",
"description": "A modern web app using a Django backend and an Angular frontend.",
"scripts": {
"lint": "run-p lint:js lint:md lint:py",
"lint:js": "eslint .",
"lint:md": "remark .",
"lint:py": "black --diff --check .",
"lint:py:fix": "black .",
"lint:py-type": "pyright",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git@gitlab.com:sahkoinsinoorikilta/vtmk/web2.0-backend.git"
},
"author": "SIK ry",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.20.0",
"eslint": "^9.20.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"pyright": "^1.1.393",
"remark-cli": "^12.0.1",
"remark-preset-lint-recommended": "^7.0.1"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}