TODO-app/package.json
2025-12-23 00:01:53 +01:00

41 lines
1.3 KiB
JSON

{
"name": "todo",
"version": "1.0.0",
"description": "Ett enkelt TODO-system byggt med **Python**, **Flask** och **SQLite**. Projektet är uppsatt med **app factory-pattern**, **pytest-tester** och är redo att köras i **GitHub Actions CI**.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "flask --app app:create_app run --port 5001",
"api-test": "newman run tests/postman/todo.collection.json -e tests/postman/todo.env.json",
"e2e": "playwright test",
"test:all": "start-server-and-test start http://127.0.0.1:5001/ \"npm run api-test && npm run e2e\"",
"lint:py": "ruff check .",
"lint:js": "eslint .",
"lint": "npm run lint:js && npm run lint:py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwradhe/todo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/jwradhe/todo/issues"
},
"homepage": "https://github.com/jwradhe/todo#readme",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@eslint/markdown": "^7.5.1",
"@playwright/test": "^1.57.0",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"newman": "^6.1.0",
"start-server-and-test": "^2.1.3",
"typescript-eslint": "^8.50.1"
}
}