1
0
mirror of https://github.com/morris/vanilla-todo.git synced 2025-01-16 20:28:22 +01:00
vanilla-todo/package.json

38 lines
985 B
JSON
Raw Normal View History

2020-10-20 17:27:16 +02:00
{
"name": "vanilla-todo",
"version": "0.1.0",
2022-07-22 16:43:29 +02:00
"description": "A TeuxDeux clone built with vanilla web technology only",
2020-10-20 17:27:16 +02:00
"scripts": {
2022-07-22 16:43:29 +02:00
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint public",
"lint-styles": "stylelint public/styles/*",
2022-08-06 16:55:39 +02:00
"serve": "http-server -c-1 public"
2020-10-20 17:27:16 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/morris/vanilla-todo.git"
},
"keywords": [
"vanilla",
"html",
"javascript",
"css"
2020-10-20 17:27:16 +02:00
],
"author": "Morris Brodersen <mb@morrisbrodersen.de>",
"license": "ISC",
"bugs": {
"url": "https://github.com/morris/vanilla-todo/issues"
},
"homepage": "https://github.com/morris/vanilla-todo#readme",
"devDependencies": {
2022-07-22 16:43:29 +02:00
"eslint": "^8.20.0",
"eslint-plugin-compat": "^4.0.2",
2022-07-22 16:43:29 +02:00
"http-server": "^14.1.1",
"prettier": "^2.7.1",
"stylelint": "^15.6.1",
"stylelint-config-standard": "^33.0.0",
2020-10-20 17:27:16 +02:00
"stylelint-rscss": "^0.4.0"
}
}