forked from HackYourFutureBelgium/welcome-to-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1012 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
26
27
28
29
{
"name": "welcome-to-js",
"version": "1.0.0",
"description": "examples, exercises and guides for the Welcome to JS module at HYF Belgium",
"main": "index.js",
"scripts": {
"format": "prettier --write ./",
"format:check": "prettier --check ./",
"spell-check": "cspell \"./**\"",
"lint:ls": "ls-lint",
"lint:md": "markdownlint --ignore node_modules --ignore flashcards --config ./.markdownlint.jsonc --fix ./ ",
"lint:js": "eslint --max-warnings=0 --ext=.js --format=codeframe --format=table"
},
"author": "HackYourFutureBelgium",
"license": "MIT",
"devDependencies": {
"cspell": "^6.31.1",
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.19.0",
"@ls-lint/ls-lint": "^2.0.0",
"markdownlint-cli": "^0.34.0",
"prettier": "^2.8.8"
}
}