1
0
mirror of https://github.com/morris/vanilla-todo.git synced 2025-01-17 12:48:15 +01:00
vanilla-todo/package.json

47 lines
1.2 KiB
JSON
Raw Normal View History

2020-10-20 17:27:16 +02:00
{
"name": "vanilla-todo",
"version": "0.1.0",
2023-11-13 20:03:04 +01:00
"description": "A TeuxDeux clone in plain HTML, CSS and JavaScript (no build steps)",
2020-10-20 17:27:16 +02:00
"keywords": [
"vanilla",
"html",
2023-11-13 20:03:04 +01:00
"css",
"javascript"
2020-10-20 17:27:16 +02:00
],
"author": "Morris Brodersen <mb@morrisbrodersen.de>",
"license": "ISC",
2023-11-13 20:03:04 +01:00
"homepage": "https://github.com/morris/vanilla-todo#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/morris/vanilla-todo.git"
},
2020-10-20 17:27:16 +02:00
"bugs": {
"url": "https://github.com/morris/vanilla-todo/issues"
},
2023-11-13 20:03:04 +01:00
"engines": {
"node": ">=20"
},
"scripts": {
2023-11-24 16:40:29 +01:00
"dev": "node ./dev/server.mjs public",
2023-11-13 20:03:04 +01:00
"format": "prettier --write .",
"format-check": "prettier --check .",
2023-12-02 11:23:40 +01:00
"lint": "eslint .",
2023-11-13 20:03:04 +01:00
"lint-styles": "stylelint public/styles/*",
"test": "playwright test",
2023-11-26 00:43:55 +01:00
"test-ui": "playwright test --ui",
"test-coverage": "bash scripts/test-coverage.sh"
2023-11-13 20:03:04 +01:00
},
2020-10-20 17:27:16 +02:00
"devDependencies": {
2023-05-13 18:20:50 +02:00
"@playwright/test": "^1.33.0",
2023-11-26 00:43:55 +01:00
"c8": "^8.0.1",
2022-07-22 16:43:29 +02:00
"eslint": "^8.20.0",
"eslint-plugin-compat": "^4.0.2",
2023-11-30 19:29:09 +01:00
"mime": "^4.0.0",
2023-11-13 20:03:04 +01:00
"prettier": "^3.1.0",
"stylelint": "^15.6.1",
2023-11-13 20:03:04 +01:00
"stylelint-config-standard": "^34.0.0",
2023-11-19 14:48:31 +01:00
"stylelint-rscss": "^0.4.0",
"ws": "^8.14.2"
2020-10-20 17:27:16 +02:00
}
}