forked from HackYourFutureBelgium/agile-development
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 781 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "agile-development",
"version": "1.0.0",
"description": "examples, exercises and guides for the Agile Development module at DeNepo",
"scripts": {
"format": "prettier --write ./",
"format:check": "prettier --check ./",
"spell-check": "cspell \"./**\"",
"lint:ls": "ls-lint",
"lint:md": "markdownlint --ignore node_modules --config ./.markdownlint.jsonc ./ ",
"lint:css": "stylelint \"./**/*.css\" ",
"validate:html": "html-validate ./"
},
"author": "DeNepo",
"license": "MIT",
"devDependencies": {
"@ls-lint/ls-lint": "^2.0.0",
"cspell": "^6.31.1",
"html-validate": "^7.17.0",
"markdownlint-cli": "^0.34.0",
"prettier": "^2.8.8",
"stylelint": "^15.6.2",
"stylelint-config-standard": "^33.0.0"
}
}