generated from HackYourFutureBelgium/separation-of-concerns-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.46 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "javascript-quiz",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"test": "node --experimental-vm-modules node_modules/.bin/jest --passWithNoTests",
"format": "prettier --write ./client",
"format:check": "prettier --check ./client",
"spell-check": "cspell './**'",
"lint:ls": "ls-lint",
"lint:md": "markdownlint --ignore node_modules --config ./.markdownlint.jsonc --fix ./ ",
"lint:css": "stylelint",
"lint:js": "eslint --max-warnings=0 --ext=.js --format=codeframe",
"validate:html": "html-validate",
"accessibility": "achecker"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hackyourfuturebelgium/word-list.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/hackyourfuturebelgium/word-list/issues"
},
"homepage": "https://github.com/hackyourfuturebelgium/word-list",
"devDependencies": {
"accessibility-checker": "^3.1.10",
"cspell": "^5.6.6",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-boundaries": "^2.3.0",
"eslint-plugin-disable": "^2.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sonarjs": "^0.9.1",
"html-validate": "^5.2.0",
"markdownlint-cli": "^0.28.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"vite": "^2.5.1",
"@ls-lint/ls-lint": "^1.11.0"
}
}