mirror of
https://github.com/morris/vanilla-todo.git
synced 2025-01-17 04:38:14 +01:00
45 lines
1.1 KiB
JSON
45 lines
1.1 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 public",
|
|
"lint-styles": "stylelint public/styles/*",
|
|
"test": "playwright test",
|
|
"test-ui": "playwright test --ui"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.33.0",
|
|
"eslint": "^8.20.0",
|
|
"eslint-plugin-compat": "^4.0.2",
|
|
"mime": "^3.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"
|
|
}
|
|
}
|