TODO-app/package.json

33 lines
1.0 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\""
},
"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": {
"@playwright/test": "^1.57.0",
"newman": "^6.1.0",
"start-server-and-test": "^2.1.3"
}
}