1
0
mirror of https://github.com/morris/vanilla-todo.git synced 2025-01-17 04:38:14 +01:00
vanilla-todo/package.json
2023-12-02 11:23:40 +01:00

47 lines
1.2 KiB
JSON

{
"name": "vanilla-todo",
"version": "0.1.0",
"description": "A TeuxDeux clone in plain HTML, CSS and JavaScript (no build steps)",
"keywords": [
"vanilla",
"html",
"css",
"javascript"
],
"author": "Morris Brodersen <mb@morrisbrodersen.de>",
"license": "ISC",
"homepage": "https://github.com/morris/vanilla-todo#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/morris/vanilla-todo.git"
},
"bugs": {
"url": "https://github.com/morris/vanilla-todo/issues"
},
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "node ./dev/server.mjs public",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"lint-styles": "stylelint public/styles/*",
"test": "playwright test",
"test-ui": "playwright test --ui",
"test-coverage": "bash scripts/test-coverage.sh"
},
"devDependencies": {
"@playwright/test": "^1.33.0",
"c8": "^8.0.1",
"eslint": "^8.20.0",
"eslint-plugin-compat": "^4.0.2",
"mime": "^4.0.0",
"prettier": "^3.1.0",
"stylelint": "^15.6.1",
"stylelint-config-standard": "^34.0.0",
"stylelint-rscss": "^0.4.0",
"ws": "^8.14.2"
}
}